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
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
|
/*
* Copyright (c) 1995 - 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. All advertising materials mentioning features or use of this software
* must display the following acknowledgement:
* This product includes software developed by the Kungliga Tekniska
* Högskolan and its contributors.
*
* 4. 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 <xfs/xfs_locl.h>
#include <xfs/xfs_message.h>
#include <xfs/xfs_msg_locl.h>
#include <xfs/xfs_fs.h>
#include <xfs/xfs_dev.h>
#include <xfs/xfs_deb.h>
RCSID("$Id: xfs_dev-common.c,v 1.3 2000/09/11 14:26:51 art Exp $");
struct xfs_channel xfs_channel[NXFS];
void
xfs_initq(struct xfs_link *q)
{
q->next = q;
q->prev = q;
}
/* Is this queue empty? */
int
xfs_emptyq(const struct xfs_link *q)
{
return q->next == q;
}
/* Is this link on any queue? Link *must* be inited! */
int
xfs_onq(const struct xfs_link *link)
{
return link->next != NULL || link->prev != NULL;
}
/* Append q with p */
void
xfs_appendq(struct xfs_link *q, struct xfs_link *p)
{
p->next = q;
p->prev = q->prev;
p->prev->next = p;
q->prev = p;
}
/* remove `p' from its queue */
void
xfs_outq(struct xfs_link *p)
{
p->next->prev = p->prev;
p->prev->next = p->next;
p->next = p->prev = NULL;
}
/*
* Only allow one open.
*/
int
xfs_devopen_common(dev_t dev)
{
struct xfs_channel *chan;
if (minor(dev) < 0 || minor(dev) >= NXFS)
return ENXIO;
chan = &xfs_channel[minor(dev)];
/* Only allow one reader/writer */
if (chan->status & CHANNEL_OPENED) {
XFSDEB(XDEBDEV, ("xfs_devopen: already open\n"));
return EBUSY;
} else
chan->status |= CHANNEL_OPENED;
chan->message_buffer = xfs_alloc(MAX_XMSG_SIZE);
/* initalize the queues if they have not been initialized before */
xfs_initq(&chan->sleepq);
xfs_initq(&chan->messageq);
return 0;
}
#if defined(HAVE_THREE_ARGUMENT_VFS_BUSY)
#define xfs_vfs_busy(mp, flags, lock, proc) vfs_busy((mp), (flags), (lock))
#define xfs_vfs_unbusy(mp, proc) vfs_unbusy((mp))
#elif defined(HAVE_FOUR_ARGUMENT_VFS_BUSY)
#define xfs_vfs_busy(mp, flags, lock, proc) vfs_busy((mp), (flags), (lock), (proc))
#define xfs_vfs_unbusy(mp, proc) vfs_unbusy((mp), (proc))
#elif defined(__osf__)
#define xfs_vfs_busy(mp, flags, lock, proc) (0)
#define xfs_vfs_unbusy(mp, proc) (0)
#else
#define xfs_vfs_busy(mp, flags, lock, proc) vfs_busy((mp))
#define xfs_vfs_unbusy(mp, proc) vfs_unbusy((mp))
#endif
/*
* Wakeup all sleepers and cleanup.
*/
int
xfs_devclose_common(dev_t dev, struct proc *proc)
{
struct xfs_channel *chan = &xfs_channel[minor(dev)];
struct xfs_link *first;
/* Sanity check, paranoia? */
if (!(chan->status & CHANNEL_OPENED))
panic("xfs_devclose never opened?");
chan->status &= ~CHANNEL_OPENED;
/* No one is going to read those messages so empty queue! */
while (!xfs_emptyq(&chan->messageq)) {
XFSDEB(XDEBDEV, ("before outq(messageq)\n"));
first = chan->messageq.next;
xfs_outq(first);
if (first->error_or_size != 0)
xfs_free(first, first->error_or_size);
XFSDEB(XDEBDEV, ("after outq(messageq)\n"));
}
/* Wakeup those waiting for replies that will never arrive. */
while (!xfs_emptyq(&chan->sleepq)) {
XFSDEB(XDEBDEV, ("before outq(sleepq)\n"));
first = chan->sleepq.next;
xfs_outq(first);
first->error_or_size = ENODEV;
wakeup((caddr_t) first);
XFSDEB(XDEBDEV, ("after outq(sleepq)\n"));
}
if (chan->status & CHANNEL_WAITING)
wakeup((caddr_t) chan);
if (chan->message_buffer) {
xfs_free(chan->message_buffer, MAX_XMSG_SIZE);
chan->message_buffer = NULL;
}
/*
* Free all xfs nodes.
*/
if (xfs[minor(dev)].mp != NULL) {
if (xfs_vfs_busy(xfs[minor(dev)].mp, 0, NULL, proc)) {
XFSDEB(XDEBNODE, ("xfs_dev_close: vfs_busy() --> BUSY\n"));
return EBUSY;
}
free_all_xfs_nodes(&xfs[minor(dev)], FORCECLOSE, 0);
xfs_vfs_unbusy(xfs[minor(dev)].mp, proc);
}
return 0;
}
#ifdef XFS_DEBUG
/*
* osf glue for CURSIG
*/
static long
xfs_cursig (struct proc *p)
{
#ifdef __osf__
thread_t th = current_thread();
struct np_uthread *npu = thread_to_np_uthread(th);
return CURSIG(p,npu);
#else
return CURSIG(p);
#endif
}
#endif
/*
* Move messages from kernel to user space.
*/
int
xfs_devread(dev_t dev, struct uio * uiop, int ioflag)
{
struct xfs_channel *chan = &xfs_channel[minor(dev)];
struct xfs_link *first;
int error = 0;
#ifdef XFS_DEBUG
char devname[64];
#endif
XFSDEB(XDEBDEV, ("xfs_devread dev = %s\n",
xfs_devtoname_r(dev, devname, sizeof(devname))));
XFSDEB(XDEBDEV, ("xfs_devread: m = %lx, m->prev = %lx, m->next = %lx\n",
(unsigned long)&chan->messageq,
(unsigned long)chan->messageq.prev,
(unsigned long)chan->messageq.next));
again:
if (!xfs_emptyq (&chan->messageq)) {
while (!xfs_emptyq (&chan->messageq)) {
/* Remove message */
first = chan->messageq.next;
XFSDEB(XDEBDEV, ("xfs_devread: first = %lx, "
"first->prev = %lx, first->next = %lx\n",
(unsigned long)first,
(unsigned long)first->prev,
(unsigned long)first->next));
XFSDEB(XDEBDEV, ("xfs_devread: message->size = %u\n",
first->message->size));
if (first->message->size > uiop->uio_resid)
break;
error = uiomove((caddr_t) first->message, first->message->size,
uiop);
if (error)
break;
xfs_outq(first);
if (first->error_or_size != 0)
xfs_free(first, first->error_or_size);
}
} else {
chan->status |= CHANNEL_WAITING;
if (tsleep((caddr_t) chan, (PZERO + 1) | PCATCH, "xfsread", 0)) {
XFSDEB(XDEBMSG,
("caught signal xfs_devread: %ld\n",
xfs_cursig(xfs_uio_to_proc(uiop))));
error = EINTR;
} else if ((chan->status & CHANNEL_WAITING) == 0) {
goto again;
} else
error = EIO;
}
XFSDEB(XDEBDEV, ("xfs_devread done error = %d\n", error));
return error;
}
/*
* Move messages from user space to kernel space,
* wakeup sleepers, insert new data in VFS.
*/
int
xfs_devwrite(dev_t dev, struct uio *uiop, int ioflag)
{
struct xfs_channel *chan = &xfs_channel[minor(dev)];
char *p;
int error;
u_int cnt;
struct xfs_message_header *msg_buf;
#ifdef XFS_DEBUG
char devname[64];
#endif
XFSDEB(XDEBDEV, ("xfs_devwrite dev = %s\n",
xfs_devtoname_r (dev, devname, sizeof(devname))));
cnt = uiop->uio_resid;
error = uiomove((caddr_t) chan->message_buffer, MAX_XMSG_SIZE, uiop);
if (error != 0)
return error;
cnt -= uiop->uio_resid;
/*
* This thread handles the received message.
*/
for (p = (char *)chan->message_buffer;
cnt > 0;
p += msg_buf->size, cnt -= msg_buf->size) {
struct proc *pp = xfs_uio_to_proc(uiop);
msg_buf = (struct xfs_message_header *)p;
error = xfs_message_receive (minor(dev),
msg_buf,
msg_buf->size,
pp);
}
XFSDEB(XDEBDEV, ("xfs_devwrite error = %d\n", error));
return error;
}
/*
* Send a message to user space.
*/
int
xfs_message_send(int fd, struct xfs_message_header * message, u_int size)
{
struct xfs_channel *chan = &xfs_channel[fd];
struct {
struct xfs_link this_message;
struct xfs_message_header msg;
} *t;
XFSDEB(XDEBMSG, ("xfs_message_send opcode = %d\n", message->opcode));
if (!(chan->status & CHANNEL_OPENED)) /* No receiver? */
return ENODEV;
/* Prepare message and copy it later */
message->size = size;
message->sequence_num = chan->nsequence++;
t = xfs_alloc(sizeof(t->this_message) + size);
t->this_message.error_or_size = sizeof(t->this_message) + size;
bcopy(message, &t->msg, size);
t->this_message.message = &t->msg;
xfs_appendq(&chan->messageq, &t->this_message);
if (chan->status & CHANNEL_WAITING) {
chan->status &= ~CHANNEL_WAITING;
wakeup((caddr_t) chan);
}
xfs_select_wakeup(chan);
return 0;
}
#if defined(SWEXIT)
#define XFS_P_EXIT SWEXIT
#elif defined(P_WEXIT)
#define XFS_P_EXIT P_WEXIT
#else
#error what is your exit named ?
#endif
/*
* Send a message to user space and wait for reply.
*/
int
xfs_message_rpc(int fd, struct xfs_message_header * message, u_int size)
{
int ret;
struct xfs_channel *chan = &xfs_channel[fd];
struct xfs_link *this_message;
struct xfs_link *this_process;
struct xfs_message_header *msg;
#if defined(HAVE_STRUCT_PROC_P_SIGMASK)
sigset_t oldsigmask;
#endif /* HAVE_STRUCT_PROC_P_SIGMASK */
int catch;
struct proc *proc = xfs_curproc ();
XFSDEB(XDEBMSG, ("xfs_message_rpc opcode = %d\n", message->opcode));
if (!(chan->status & CHANNEL_OPENED)) /* No receiver? */
return ENODEV;
if (size < sizeof(struct xfs_message_wakeup)) {
printf("XFS PANIC Error: Message to small to receive wakeup, opcode = %d\n", message->opcode);
return ENOMEM;
}
this_message = xfs_alloc(sizeof(struct xfs_link));
this_process = xfs_alloc(sizeof(struct xfs_link));
msg = xfs_alloc(size);
bcopy(message, msg, size);
msg->size = size;
msg->sequence_num = chan->nsequence++;
this_message->error_or_size = 0;
this_message->message = msg;
this_process->message = msg;
xfs_appendq(&chan->messageq, this_message);
xfs_appendq(&chan->sleepq, this_process);
xfs_select_wakeup(chan);
this_process->error_or_size = 0;
if (chan->status & CHANNEL_WAITING) {
chan->status &= ~CHANNEL_WAITING;
wakeup((caddr_t) chan);
}
/*
* Remove SIGIO from the sigmask so no IO will
* wake us up from tsleep()
*/
#ifdef HAVE_STRUCT_PROC_P_SIGMASK
oldsigmask = proc->p_sigmask;
#if defined(__sigaddset)
__sigaddset(&proc->p_sigmask, SIGIO);
__sigaddset(&proc->p_sigmask, SIGALRM);
__sigaddset(&proc->p_sigmask, SIGVTALRM);
#elif defined(SIGADDSET)
SIGADDSET(proc->p_sigmask, SIGIO);
SIGADDSET(proc->p_sigmask, SIGALRM);
SIGADDSET(proc->p_sigmask, SIGVTALRM);
#else
proc->p_sigmask |= sigmask(SIGIO);
proc->p_sigmask |= sigmask(SIGALRM);
proc->p_sigmask |= sigmask(SIGVTALRM);
#endif /* __sigaddset */
#elif defined(HAVE_STRUCT_PROC_P_SIGWAITMASK)
oldsigmask = proc->p_sigwaitmask;
sigaddset(&proc->p_sigwaitmask, SIGIO);
sigaddset(&proc->p_sigwaitmask, SIGALRM);
sigaddset(&proc->p_sigwaitmask, SIGVTALRM);
#endif
/*
* if we are exiting we should not try to catch signals, since
* there might not be enough context left in the process to handle
* signal delivery, and besides, most BSD-variants ignore all
* signals while closing anyway.
*/
catch = 0;
if (!(proc->p_flag & XFS_P_EXIT))
catch |= PCATCH;
/*
* We have to check if we have a receiver here too because the
* daemon could have terminated before we sleep. This seems to
* happen sometimes when rebooting. */
if (!(chan->status & CHANNEL_OPENED)) {
XFSDEB(XDEBMSG, ("xfs_message_rpc: channel went away\n"));
this_process->error_or_size = EINTR;
} else if ((ret = tsleep((caddr_t) this_process,
(PZERO + 1) | catch, "xfs", 0)) != 0) {
XFSDEB(XDEBMSG, ("caught signal (%d): %ld\n",
ret, xfs_cursig(proc)));
this_process->error_or_size = EINTR;
}
#ifdef HAVE_STRUCT_PROC_P_SIGMASK
proc->p_sigmask = oldsigmask;
#elif defined(HAVE_STRUCT_PROC_P_SIGWAITMASK)
proc->p_sigwaitmask = oldsigmask;
#endif
/*
* Caught signal, got reply message or device was closed.
* Need to clean up both messageq and sleepq.
*/
if (xfs_onq(this_message)) {
xfs_outq(this_message);
}
if (xfs_onq(this_process)) {
xfs_outq(this_process);
}
ret = this_process->error_or_size;
XFSDEB(XDEBMSG, ("xfs_message_rpc this_process->error_or_size = %d\n",
this_process->error_or_size));
XFSDEB(XDEBMSG, ("xfs_message_rpc opcode ((xfs_message_wakeup*)(this_process->message))->error = %d\n", ((struct xfs_message_wakeup *) (this_process->message))->error));
bcopy(msg, message, size);
xfs_free(this_message, sizeof(*this_message));
xfs_free(this_process, sizeof(*this_process));
xfs_free(msg, size);
return ret;
}
/*
* For each message type there is a message handler
* that implements its action, xfs_message_receive
* invokes the correct function.
*/
int
xfs_message_receive(int fd,
struct xfs_message_header *message,
u_int size,
struct proc *p)
{
XFSDEB(XDEBMSG, ("xfs_message_receive opcode = %d\n", message->opcode));
/* Dispatch and coerce message type */
switch (message->opcode) {
case XFS_MSG_WAKEUP:
return xfs_message_wakeup(fd,
(struct xfs_message_wakeup *) message,
message->size,
p);
case XFS_MSG_WAKEUP_DATA:
return xfs_message_wakeup_data(fd,
(struct xfs_message_wakeup_data *) message,
message->size,
p);
case XFS_MSG_INSTALLROOT:
return xfs_message_installroot(fd,
(struct xfs_message_installroot *) message,
message->size,
p);
case XFS_MSG_INSTALLNODE:
return xfs_message_installnode(fd,
(struct xfs_message_installnode *) message,
message->size,
p);
case XFS_MSG_INSTALLATTR:
return xfs_message_installattr(fd,
(struct xfs_message_installattr *) message,
message->size,
p);
case XFS_MSG_INSTALLDATA:
return xfs_message_installdata(fd,
(struct xfs_message_installdata *) message,
message->size,
p);
case XFS_MSG_INVALIDNODE:
return xfs_message_invalidnode(fd,
(struct xfs_message_invalidnode *) message,
message->size,
p);
case XFS_MSG_UPDATEFID:
return xfs_message_updatefid(fd,
(struct xfs_message_updatefid *)message,
message->size,
p);
case XFS_MSG_GC_NODES:
return xfs_message_gc_nodes(fd,
(struct xfs_message_gc_nodes *)message,
message->size,
p);
case XFS_MSG_VERSION:
return xfs_message_version(fd,
(struct xfs_message_version *)message,
message->size,
p);
default:
printf("XFS PANIC Warning xfs_dev: Unknown message opcode == %d\n",
message->opcode);
return EINVAL;
}
}
int
xfs_message_wakeup(int fd,
struct xfs_message_wakeup *message,
u_int size,
struct proc *p)
{
struct xfs_channel *chan = &xfs_channel[fd];
struct xfs_link *sleepq = &chan->sleepq;
struct xfs_link *t = chan->sleepq.next; /* Really first in q */
XFSDEB(XDEBMSG, ("xfs_message_wakeup error: %d\n", message->error));
for (; t != sleepq; t = t->next)
if (t->message->sequence_num == message->sleepers_sequence_num) {
if (t->message->size < size) {
printf("XFS PANIC Error: Could not wakeup requestor with opcode = %d properly, to small receive buffer.\n", t->message->opcode);
t->error_or_size = ENOMEM;
} else
bcopy(message, t->message, size);
wakeup((caddr_t) t);
break;
}
return 0;
}
int
xfs_message_wakeup_data(int fd,
struct xfs_message_wakeup_data * message,
u_int size,
struct proc *p)
{
struct xfs_channel *chan = &xfs_channel[fd];
struct xfs_link *sleepq = &chan->sleepq;
struct xfs_link *t = chan->sleepq.next; /* Really first in q */
XFSDEB(XDEBMSG, ("xfs_message_wakeup_data error: %d\n", message->error));
for (; t != sleepq; t = t->next)
if (t->message->sequence_num == message->sleepers_sequence_num) {
if (t->message->size < size) {
printf("XFS PANIC Error: Could not wakeup requestor with opcode = %d properly, to small receive buffer.\n", t->message->opcode);
t->error_or_size = ENOMEM;
} else
bcopy(message, t->message, size);
wakeup((caddr_t) t);
break;
}
return 0;
}
/*
*
*/
int
xfs_uprintf_device(void)
{
#if 0
int i;
for (i = 0; i < NXFS; i++) {
uprintf("xfs_channel[%d] = {\n", i);
uprintf("messageq.next = %lx ", xfs_channel[i].messageq.next);
uprintf("messageq.prev = %lx ", xfs_channel[i].messageq.prev);
uprintf("sleepq.next = %lx ", xfs_channel[i].sleepq.next);
uprintf("sleepq.prev = %lx ", xfs_channel[i].sleepq.prev);
uprintf("nsequence = %d status = %d\n",
xfs_channel[i].nsequence,
xfs_channel[i].status);
uprintf("}\n");
}
#endif
return 0;
}
|