2 * drivers/s390/char/vmlogrdr.c
3 * character device driver for reading z/VM system service records
6 * Copyright 2004 IBM Corporation
7 * character device driver for reading z/VM system service records,
9 * Author(s): Xenia Tkatschow <xenia@us.ibm.com>
10 * Stefan Weinhuber <wein@de.ibm.com>
13 #include <linux/module.h>
14 #include <linux/init.h>
15 #include <linux/errno.h>
16 #include <linux/types.h>
17 #include <linux/interrupt.h>
18 #include <linux/spinlock.h>
19 #include <asm/atomic.h>
20 #include <asm/uaccess.h>
21 #include <asm/cpcmd.h>
22 #include <asm/debug.h>
23 #include <asm/ebcdic.h>
24 #include <net/iucv/iucv.h>
25 #include <linux/kmod.h>
26 #include <linux/cdev.h>
27 #include <linux/device.h>
28 #include <linux/string.h>
33 ("(C) 2004 IBM Corporation by Xenia Tkatschow (xenia@us.ibm.com)\n"
34 " Stefan Weinhuber (wein@de.ibm.com)");
35 MODULE_DESCRIPTION ("Character device driver for reading z/VM "
36 "system service records.");
37 MODULE_LICENSE("GPL");
41 * The size of the buffer for iucv data transfer is one page,
42 * but in addition to the data we read from iucv we also
43 * place an integer and some characters into that buffer,
44 * so the maximum size for record data is a little less then
47 #define NET_BUFFER_SIZE (PAGE_SIZE - sizeof(int) - sizeof(FENCE))
50 * The elements that are concurrently accessed by bottom halves are
51 * connection_established, iucv_path_severed, local_interrupt_buffer
52 * and receive_ready. The first three can be protected by
53 * priv_lock. receive_ready is atomic, so it can be incremented and
54 * decremented without holding a lock.
55 * The variable dev_in_use needs to be protected by the lock, since
56 * it's a flag used by open to make sure that the device is opened only
57 * by one user at the same time.
59 struct vmlogrdr_priv_t
{
60 char system_service
[8];
61 char internal_name
[8];
62 char recording_name
[8];
63 struct iucv_path
*path
;
64 int connection_established
;
65 int iucv_path_severed
;
66 struct iucv_message local_interrupt_buffer
;
67 atomic_t receive_ready
;
70 char * current_position
;
72 ulong residual_length
;
74 int dev_in_use
; /* 1: already opened, 0: not opened*/
76 struct device
*device
;
77 struct device
*class_device
;
84 * File operation structure for vmlogrdr devices
86 static int vmlogrdr_open(struct inode
*, struct file
*);
87 static int vmlogrdr_release(struct inode
*, struct file
*);
88 static ssize_t
vmlogrdr_read (struct file
*filp
, char __user
*data
,
89 size_t count
, loff_t
* ppos
);
91 static const struct file_operations vmlogrdr_fops
= {
93 .open
= vmlogrdr_open
,
94 .release
= vmlogrdr_release
,
95 .read
= vmlogrdr_read
,
99 static void vmlogrdr_iucv_path_complete(struct iucv_path
*, u8 ipuser
[16]);
100 static void vmlogrdr_iucv_path_severed(struct iucv_path
*, u8 ipuser
[16]);
101 static void vmlogrdr_iucv_message_pending(struct iucv_path
*,
102 struct iucv_message
*);
105 static struct iucv_handler vmlogrdr_iucv_handler
= {
106 .path_complete
= vmlogrdr_iucv_path_complete
,
107 .path_severed
= vmlogrdr_iucv_path_severed
,
108 .message_pending
= vmlogrdr_iucv_message_pending
,
112 static DECLARE_WAIT_QUEUE_HEAD(conn_wait_queue
);
113 static DECLARE_WAIT_QUEUE_HEAD(read_wait_queue
);
116 * pointer to system service private structure
117 * minor number 0 --> logrec
118 * minor number 1 --> account
119 * minor number 2 --> symptom
122 static struct vmlogrdr_priv_t sys_ser
[] = {
123 { .system_service
= "*LOGREC ",
124 .internal_name
= "logrec",
125 .recording_name
= "EREP",
128 .priv_lock
= __SPIN_LOCK_UNLOCKED(sys_ser
[0].priv_lock
),
132 { .system_service
= "*ACCOUNT",
133 .internal_name
= "account",
134 .recording_name
= "ACCOUNT",
137 .priv_lock
= __SPIN_LOCK_UNLOCKED(sys_ser
[1].priv_lock
),
141 { .system_service
= "*SYMPTOM",
142 .internal_name
= "symptom",
143 .recording_name
= "SYMPTOM",
146 .priv_lock
= __SPIN_LOCK_UNLOCKED(sys_ser
[2].priv_lock
),
152 #define MAXMINOR (sizeof(sys_ser)/sizeof(struct vmlogrdr_priv_t))
154 static char FENCE
[] = {"EOR"};
155 static int vmlogrdr_major
= 0;
156 static struct cdev
*vmlogrdr_cdev
= NULL
;
157 static int recording_class_AB
;
160 static void vmlogrdr_iucv_path_complete(struct iucv_path
*path
, u8 ipuser
[16])
162 struct vmlogrdr_priv_t
* logptr
= path
->private;
164 spin_lock(&logptr
->priv_lock
);
165 logptr
->connection_established
= 1;
166 spin_unlock(&logptr
->priv_lock
);
167 wake_up(&conn_wait_queue
);
171 static void vmlogrdr_iucv_path_severed(struct iucv_path
*path
, u8 ipuser
[16])
173 struct vmlogrdr_priv_t
* logptr
= path
->private;
174 u8 reason
= (u8
) ipuser
[8];
176 printk (KERN_ERR
"vmlogrdr: connection severed with"
177 " reason %i\n", reason
);
179 iucv_path_sever(path
, NULL
);
183 spin_lock(&logptr
->priv_lock
);
184 logptr
->connection_established
= 0;
185 logptr
->iucv_path_severed
= 1;
186 spin_unlock(&logptr
->priv_lock
);
188 wake_up(&conn_wait_queue
);
189 /* just in case we're sleeping waiting for a record */
190 wake_up_interruptible(&read_wait_queue
);
194 static void vmlogrdr_iucv_message_pending(struct iucv_path
*path
,
195 struct iucv_message
*msg
)
197 struct vmlogrdr_priv_t
* logptr
= path
->private;
200 * This function is the bottom half so it should be quick.
201 * Copy the external interrupt data into our local eib and increment
204 spin_lock(&logptr
->priv_lock
);
205 memcpy(&logptr
->local_interrupt_buffer
, msg
, sizeof(*msg
));
206 atomic_inc(&logptr
->receive_ready
);
207 spin_unlock(&logptr
->priv_lock
);
208 wake_up_interruptible(&read_wait_queue
);
212 static int vmlogrdr_get_recording_class_AB(void)
214 char cp_command
[]="QUERY COMMAND RECORDING ";
215 char cp_response
[80];
219 printk (KERN_DEBUG
"vmlogrdr: query command: %s\n", cp_command
);
220 cpcmd(cp_command
, cp_response
, sizeof(cp_response
), NULL
);
221 printk (KERN_DEBUG
"vmlogrdr: response: %s", cp_response
);
222 len
= strnlen(cp_response
,sizeof(cp_response
));
224 tail
=strnchr(cp_response
,len
,'=');
228 if (!strncmp("ANY",tail
,3))
230 if (!strncmp("NONE",tail
,4))
233 * expect comma separated list of classes here, if one of them
234 * is A or B return 1 otherwise 0
236 for (i
=tail
-cp_response
; i
<len
; i
++)
237 if ( cp_response
[i
]=='A' || cp_response
[i
]=='B' )
243 static int vmlogrdr_recording(struct vmlogrdr_priv_t
* logptr
,
244 int action
, int purge
)
248 char cp_response
[160];
249 char *onoff
, *qid_string
;
251 memset(cp_command
, 0x00, sizeof(cp_command
));
252 memset(cp_response
, 0x00, sizeof(cp_response
));
254 onoff
= ((action
== 1) ? "ON" : "OFF");
255 qid_string
= ((recording_class_AB
== 1) ? " QID * " : "");
258 * The recording commands needs to be called with option QID
259 * for guests that have previlege classes A or B.
260 * Purging has to be done as separate step, because recording
261 * can't be switched on as long as records are on the queue.
262 * Doing both at the same time doesn't work.
266 snprintf(cp_command
, sizeof(cp_command
),
267 "RECORDING %s PURGE %s",
268 logptr
->recording_name
,
271 printk (KERN_DEBUG
"vmlogrdr: recording command: %s\n",
273 cpcmd(cp_command
, cp_response
, sizeof(cp_response
), NULL
);
274 printk (KERN_DEBUG
"vmlogrdr: recording response: %s",
278 memset(cp_command
, 0x00, sizeof(cp_command
));
279 memset(cp_response
, 0x00, sizeof(cp_response
));
280 snprintf(cp_command
, sizeof(cp_command
), "RECORDING %s %s %s",
281 logptr
->recording_name
,
285 printk (KERN_DEBUG
"vmlogrdr: recording command: %s\n", cp_command
);
286 cpcmd(cp_command
, cp_response
, sizeof(cp_response
), NULL
);
287 printk (KERN_DEBUG
"vmlogrdr: recording response: %s",
289 /* The recording command will usually answer with 'Command complete'
290 * on success, but when the specific service was never connected
291 * before then there might be an additional informational message
292 * 'HCPCRC8072I Recording entry not found' before the
293 * 'Command complete'. So I use strstr rather then the strncmp.
295 if (strstr(cp_response
,"Command complete"))
303 static int vmlogrdr_open (struct inode
*inode
, struct file
*filp
)
306 struct vmlogrdr_priv_t
* logptr
= NULL
;
310 dev_num
= iminor(inode
);
311 if (dev_num
> MAXMINOR
)
313 logptr
= &sys_ser
[dev_num
];
316 * only allow for blocking reads to be open
318 if (filp
->f_flags
& O_NONBLOCK
)
321 /* Besure this device hasn't already been opened */
322 spin_lock_bh(&logptr
->priv_lock
);
323 if (logptr
->dev_in_use
) {
324 spin_unlock_bh(&logptr
->priv_lock
);
327 logptr
->dev_in_use
= 1;
328 logptr
->connection_established
= 0;
329 logptr
->iucv_path_severed
= 0;
330 atomic_set(&logptr
->receive_ready
, 0);
331 logptr
->buffer_free
= 1;
332 spin_unlock_bh(&logptr
->priv_lock
);
334 /* set the file options */
335 filp
->private_data
= logptr
;
336 filp
->f_op
= &vmlogrdr_fops
;
338 /* start recording for this service*/
339 if (logptr
->autorecording
) {
340 ret
= vmlogrdr_recording(logptr
,1,logptr
->autopurge
);
342 printk (KERN_WARNING
"vmlogrdr: failed to start "
343 "recording automatically\n");
346 /* create connection to the system service */
347 logptr
->path
= iucv_path_alloc(10, 0, GFP_KERNEL
);
350 connect_rc
= iucv_path_connect(logptr
->path
, &vmlogrdr_iucv_handler
,
351 logptr
->system_service
, NULL
, NULL
,
354 printk (KERN_ERR
"vmlogrdr: iucv connection to %s "
355 "failed with rc %i \n", logptr
->system_service
,
360 /* We've issued the connect and now we must wait for a
361 * ConnectionComplete or ConnectinSevered Interrupt
362 * before we can continue to process.
364 wait_event(conn_wait_queue
, (logptr
->connection_established
)
365 || (logptr
->iucv_path_severed
));
366 if (logptr
->iucv_path_severed
)
368 return nonseekable_open(inode
, filp
);
371 if (logptr
->autorecording
)
372 vmlogrdr_recording(logptr
,0,logptr
->autopurge
);
374 kfree(logptr
->path
); /* kfree(NULL) is ok. */
377 logptr
->dev_in_use
= 0;
382 static int vmlogrdr_release (struct inode
*inode
, struct file
*filp
)
386 struct vmlogrdr_priv_t
* logptr
= filp
->private_data
;
388 iucv_path_sever(logptr
->path
, NULL
);
391 if (logptr
->autorecording
) {
392 ret
= vmlogrdr_recording(logptr
,0,logptr
->autopurge
);
394 printk (KERN_WARNING
"vmlogrdr: failed to stop "
395 "recording automatically\n");
397 logptr
->dev_in_use
= 0;
403 static int vmlogrdr_receive_data(struct vmlogrdr_priv_t
*priv
)
406 /* we need to keep track of two data sizes here:
407 * The number of bytes we need to receive from iucv and
408 * the total number of bytes we actually write into the buffer.
410 int user_data_count
, iucv_data_count
;
413 if (atomic_read(&priv
->receive_ready
)) {
414 spin_lock_bh(&priv
->priv_lock
);
415 if (priv
->residual_length
){
416 /* receive second half of a record */
417 iucv_data_count
= priv
->residual_length
;
419 buffer
= priv
->buffer
;
421 /* receive a new record:
422 * We need to return the total length of the record
423 * + size of FENCE in the first 4 bytes of the buffer.
425 iucv_data_count
= priv
->local_interrupt_buffer
.length
;
426 user_data_count
= sizeof(int);
427 temp
= (int*)priv
->buffer
;
428 *temp
= iucv_data_count
+ sizeof(FENCE
);
429 buffer
= priv
->buffer
+ sizeof(int);
432 * If the record is bigger then our buffer, we receive only
433 * a part of it. We can get the rest later.
435 if (iucv_data_count
> NET_BUFFER_SIZE
)
436 iucv_data_count
= NET_BUFFER_SIZE
;
437 rc
= iucv_message_receive(priv
->path
,
438 &priv
->local_interrupt_buffer
,
439 0, buffer
, iucv_data_count
,
440 &priv
->residual_length
);
441 spin_unlock_bh(&priv
->priv_lock
);
442 /* An rc of 5 indicates that the record was bigger then
443 * the buffer, which is OK for us. A 9 indicates that the
444 * record was purged befor we could receive it.
449 atomic_set(&priv
->receive_ready
, 0);
454 priv
->buffer_free
= 0;
455 user_data_count
+= iucv_data_count
;
456 priv
->current_position
= priv
->buffer
;
457 if (priv
->residual_length
== 0){
458 /* the whole record has been captured,
459 * now add the fence */
460 atomic_dec(&priv
->receive_ready
);
461 buffer
= priv
->buffer
+ user_data_count
;
462 memcpy(buffer
, FENCE
, sizeof(FENCE
));
463 user_data_count
+= sizeof(FENCE
);
465 priv
->remaining
= user_data_count
;
472 static ssize_t
vmlogrdr_read(struct file
*filp
, char __user
*data
,
473 size_t count
, loff_t
* ppos
)
476 struct vmlogrdr_priv_t
* priv
= filp
->private_data
;
478 while (priv
->buffer_free
) {
479 rc
= vmlogrdr_receive_data(priv
);
481 rc
= wait_event_interruptible(read_wait_queue
,
482 atomic_read(&priv
->receive_ready
));
487 /* copy only up to end of record */
488 if (count
> priv
->remaining
)
489 count
= priv
->remaining
;
491 if (copy_to_user(data
, priv
->current_position
, count
))
495 priv
->current_position
+= count
;
496 priv
->remaining
-= count
;
498 /* if all data has been transferred, set buffer free */
499 if (priv
->remaining
== 0)
500 priv
->buffer_free
= 1;
505 static ssize_t
vmlogrdr_autopurge_store(struct device
* dev
,
506 struct device_attribute
*attr
,
507 const char * buf
, size_t count
)
509 struct vmlogrdr_priv_t
*priv
= dev
->driver_data
;
526 static ssize_t
vmlogrdr_autopurge_show(struct device
*dev
,
527 struct device_attribute
*attr
,
530 struct vmlogrdr_priv_t
*priv
= dev
->driver_data
;
531 return sprintf(buf
, "%u\n", priv
->autopurge
);
535 static DEVICE_ATTR(autopurge
, 0644, vmlogrdr_autopurge_show
,
536 vmlogrdr_autopurge_store
);
539 static ssize_t
vmlogrdr_purge_store(struct device
* dev
,
540 struct device_attribute
*attr
,
541 const char * buf
, size_t count
)
545 char cp_response
[80];
546 struct vmlogrdr_priv_t
*priv
= dev
->driver_data
;
551 memset(cp_command
, 0x00, sizeof(cp_command
));
552 memset(cp_response
, 0x00, sizeof(cp_response
));
555 * The recording command needs to be called with option QID
556 * for guests that have previlege classes A or B.
557 * Other guests will not recognize the command and we have to
558 * issue the same command without the QID parameter.
561 if (recording_class_AB
)
562 snprintf(cp_command
, sizeof(cp_command
),
563 "RECORDING %s PURGE QID * ",
564 priv
->recording_name
);
566 snprintf(cp_command
, sizeof(cp_command
),
567 "RECORDING %s PURGE ",
568 priv
->recording_name
);
570 printk (KERN_DEBUG
"vmlogrdr: recording command: %s\n", cp_command
);
571 cpcmd(cp_command
, cp_response
, sizeof(cp_response
), NULL
);
572 printk (KERN_DEBUG
"vmlogrdr: recording response: %s",
579 static DEVICE_ATTR(purge
, 0200, NULL
, vmlogrdr_purge_store
);
582 static ssize_t
vmlogrdr_autorecording_store(struct device
*dev
,
583 struct device_attribute
*attr
,
584 const char *buf
, size_t count
)
586 struct vmlogrdr_priv_t
*priv
= dev
->driver_data
;
591 priv
->autorecording
=0;
594 priv
->autorecording
=1;
603 static ssize_t
vmlogrdr_autorecording_show(struct device
*dev
,
604 struct device_attribute
*attr
,
607 struct vmlogrdr_priv_t
*priv
= dev
->driver_data
;
608 return sprintf(buf
, "%u\n", priv
->autorecording
);
612 static DEVICE_ATTR(autorecording
, 0644, vmlogrdr_autorecording_show
,
613 vmlogrdr_autorecording_store
);
616 static ssize_t
vmlogrdr_recording_store(struct device
* dev
,
617 struct device_attribute
*attr
,
618 const char * buf
, size_t count
)
620 struct vmlogrdr_priv_t
*priv
= dev
->driver_data
;
625 ret
= vmlogrdr_recording(priv
,0,0);
628 ret
= vmlogrdr_recording(priv
,1,0);
641 static DEVICE_ATTR(recording
, 0200, NULL
, vmlogrdr_recording_store
);
644 static ssize_t
vmlogrdr_recording_status_show(struct device_driver
*driver
,
648 char cp_command
[] = "QUERY RECORDING ";
651 cpcmd(cp_command
, buf
, 4096, NULL
);
657 static DRIVER_ATTR(recording_status
, 0444, vmlogrdr_recording_status_show
,
660 static struct attribute
*vmlogrdr_attrs
[] = {
661 &dev_attr_autopurge
.attr
,
662 &dev_attr_purge
.attr
,
663 &dev_attr_autorecording
.attr
,
664 &dev_attr_recording
.attr
,
668 static struct attribute_group vmlogrdr_attr_group
= {
669 .attrs
= vmlogrdr_attrs
,
672 static struct class *vmlogrdr_class
;
673 static struct device_driver vmlogrdr_driver
= {
679 static int vmlogrdr_register_driver(void)
683 /* Register with iucv driver */
684 ret
= iucv_register(&vmlogrdr_iucv_handler
, 1);
686 printk (KERN_ERR
"vmlogrdr: failed to register with "
691 ret
= driver_register(&vmlogrdr_driver
);
693 printk(KERN_ERR
"vmlogrdr: failed to register driver.\n");
697 ret
= driver_create_file(&vmlogrdr_driver
,
698 &driver_attr_recording_status
);
700 printk(KERN_ERR
"vmlogrdr: failed to add driver attribute.\n");
704 vmlogrdr_class
= class_create(THIS_MODULE
, "vmlogrdr");
705 if (IS_ERR(vmlogrdr_class
)) {
706 printk(KERN_ERR
"vmlogrdr: failed to create class.\n");
707 ret
= PTR_ERR(vmlogrdr_class
);
708 vmlogrdr_class
= NULL
;
714 driver_remove_file(&vmlogrdr_driver
, &driver_attr_recording_status
);
716 driver_unregister(&vmlogrdr_driver
);
718 iucv_unregister(&vmlogrdr_iucv_handler
, 1);
724 static void vmlogrdr_unregister_driver(void)
726 class_destroy(vmlogrdr_class
);
727 vmlogrdr_class
= NULL
;
728 driver_remove_file(&vmlogrdr_driver
, &driver_attr_recording_status
);
729 driver_unregister(&vmlogrdr_driver
);
730 iucv_unregister(&vmlogrdr_iucv_handler
, 1);
734 static int vmlogrdr_register_device(struct vmlogrdr_priv_t
*priv
)
739 dev
= kzalloc(sizeof(struct device
), GFP_KERNEL
);
741 snprintf(dev
->bus_id
, BUS_ID_SIZE
, "%s",
742 priv
->internal_name
);
743 dev
->bus
= &iucv_bus
;
744 dev
->parent
= iucv_root
;
745 dev
->driver
= &vmlogrdr_driver
;
747 * The release function could be called after the
748 * module has been unloaded. It's _only_ task is to
749 * free the struct. Therefore, we specify kfree()
750 * directly here. (Probably a little bit obfuscating
753 dev
->release
= (void (*)(struct device
*))kfree
;
756 ret
= device_register(dev
);
760 ret
= sysfs_create_group(&dev
->kobj
, &vmlogrdr_attr_group
);
762 device_unregister(dev
);
765 priv
->class_device
= device_create_drvdata(vmlogrdr_class
, dev
,
766 MKDEV(vmlogrdr_major
,
768 priv
, "%s", dev
->bus_id
);
769 if (IS_ERR(priv
->class_device
)) {
770 ret
= PTR_ERR(priv
->class_device
);
771 priv
->class_device
=NULL
;
772 sysfs_remove_group(&dev
->kobj
, &vmlogrdr_attr_group
);
773 device_unregister(dev
);
781 static int vmlogrdr_unregister_device(struct vmlogrdr_priv_t
*priv
)
783 device_destroy(vmlogrdr_class
, MKDEV(vmlogrdr_major
, priv
->minor_num
));
784 if (priv
->device
!= NULL
) {
785 sysfs_remove_group(&priv
->device
->kobj
, &vmlogrdr_attr_group
);
786 device_unregister(priv
->device
);
793 static int vmlogrdr_register_cdev(dev_t dev
)
796 vmlogrdr_cdev
= cdev_alloc();
797 if (!vmlogrdr_cdev
) {
800 vmlogrdr_cdev
->owner
= THIS_MODULE
;
801 vmlogrdr_cdev
->ops
= &vmlogrdr_fops
;
802 vmlogrdr_cdev
->dev
= dev
;
803 rc
= cdev_add(vmlogrdr_cdev
, vmlogrdr_cdev
->dev
, MAXMINOR
);
807 // cleanup: cdev is not fully registered, no cdev_del here!
808 kobject_put(&vmlogrdr_cdev
->kobj
);
814 static void vmlogrdr_cleanup(void)
819 cdev_del(vmlogrdr_cdev
);
822 for (i
=0; i
< MAXMINOR
; ++i
) {
823 vmlogrdr_unregister_device(&sys_ser
[i
]);
824 free_page((unsigned long)sys_ser
[i
].buffer
);
826 vmlogrdr_unregister_driver();
827 if (vmlogrdr_major
) {
828 unregister_chrdev_region(MKDEV(vmlogrdr_major
, 0), MAXMINOR
);
834 static int __init
vmlogrdr_init(void)
840 if (! MACHINE_IS_VM
) {
841 printk (KERN_ERR
"vmlogrdr: not running under VM, "
842 "driver not loaded.\n");
846 recording_class_AB
= vmlogrdr_get_recording_class_AB();
848 rc
= alloc_chrdev_region(&dev
, 0, MAXMINOR
, "vmlogrdr");
851 vmlogrdr_major
= MAJOR(dev
);
853 rc
=vmlogrdr_register_driver();
857 for (i
=0; i
< MAXMINOR
; ++i
) {
858 sys_ser
[i
].buffer
= (char *) get_zeroed_page(GFP_KERNEL
);
859 if (!sys_ser
[i
].buffer
) {
863 sys_ser
[i
].current_position
= sys_ser
[i
].buffer
;
864 rc
=vmlogrdr_register_device(&sys_ser
[i
]);
871 rc
= vmlogrdr_register_cdev(dev
);
874 printk (KERN_INFO
"vmlogrdr: driver loaded\n");
879 printk (KERN_ERR
"vmlogrdr: driver not loaded.\n");
884 static void __exit
vmlogrdr_exit(void)
887 printk (KERN_INFO
"vmlogrdr: driver unloaded\n");
892 module_init(vmlogrdr_init
);
893 module_exit(vmlogrdr_exit
);