blob: bf4a9f455d8ece68b1221d766c9a4611710245e9 [file] [log] [blame]
Hans-Joachim Pichtc114728a2009-09-11 10:28:47 +02001/*
2 * Enable Asynchronous Notification via SCLP.
3 *
4 * Copyright IBM Corp. 2009
5 * Author(s): Hans-Joachim Picht <hans@linux.vnet.ibm.com>
6 *
7 */
8
9#include <linux/init.h>
10#include <linux/module.h>
11#include <linux/device.h>
12#include <linux/stat.h>
13#include <linux/string.h>
14#include <linux/ctype.h>
15#include <linux/kmod.h>
16#include <linux/err.h>
17#include <linux/errno.h>
18#include <linux/proc_fs.h>
19#include <linux/sysctl.h>
20#include <linux/utsname.h>
21#include "sclp.h"
22
23static int callhome_enabled;
24static struct sclp_req *request;
25static struct sclp_async_sccb *sccb;
26static int sclp_async_send_wait(char *message);
27static struct ctl_table_header *callhome_sysctl_header;
28static DEFINE_SPINLOCK(sclp_async_lock);
29static char nodename[64];
30#define SCLP_NORMAL_WRITE 0x00
31
32struct async_evbuf {
33 struct evbuf_header header;
34 u64 reserved;
35 u8 rflags;
36 u8 empty;
37 u8 rtype;
38 u8 otype;
39 char comp_id[12];
40 char data[3000]; /* there is still some space left */
41} __attribute__((packed));
42
43struct sclp_async_sccb {
44 struct sccb_header header;
45 struct async_evbuf evbuf;
46} __attribute__((packed));
47
48static struct sclp_register sclp_async_register = {
49 .send_mask = EVTYP_ASYNC_MASK,
50};
51
52static int call_home_on_panic(struct notifier_block *self,
53 unsigned long event, void *data)
54{
55 strncat(data, nodename, strlen(nodename));
56 sclp_async_send_wait(data);
57 return NOTIFY_DONE;
58}
59
60static struct notifier_block call_home_panic_nb = {
61 .notifier_call = call_home_on_panic,
62 .priority = INT_MAX,
63};
64
Heiko Carstensd3acf712009-10-14 12:43:49 +020065static int proc_handler_callhome(struct ctl_table *ctl, int write,
Hans-Joachim Pichtc114728a2009-09-11 10:28:47 +020066 void __user *buffer, size_t *count,
67 loff_t *ppos)
68{
69 unsigned long val;
70 int len, rc;
Sebastian Ott3f0b3c32009-10-29 15:04:07 +010071 char buf[3];
Hans-Joachim Pichtc114728a2009-09-11 10:28:47 +020072
Sebastian Ott3f0b3c32009-10-29 15:04:07 +010073 if (!*count || (*ppos && !write)) {
Hans-Joachim Pichtc114728a2009-09-11 10:28:47 +020074 *count = 0;
75 return 0;
76 }
77 if (!write) {
Sebastian Ott3f0b3c32009-10-29 15:04:07 +010078 len = snprintf(buf, sizeof(buf), "%d\n", callhome_enabled);
Hans-Joachim Pichtc114728a2009-09-11 10:28:47 +020079 rc = copy_to_user(buffer, buf, sizeof(buf));
80 if (rc != 0)
81 return -EFAULT;
82 } else {
83 len = *count;
84 rc = copy_from_user(buf, buffer, sizeof(buf));
85 if (rc != 0)
86 return -EFAULT;
87 if (strict_strtoul(buf, 0, &val) != 0)
88 return -EINVAL;
89 if (val != 0 && val != 1)
90 return -EINVAL;
91 callhome_enabled = val;
92 }
93 *count = len;
94 *ppos += len;
95 return 0;
96}
97
98static struct ctl_table callhome_table[] = {
99 {
100 .procname = "callhome",
101 .mode = 0644,
Heiko Carstensd3acf712009-10-14 12:43:49 +0200102 .proc_handler = proc_handler_callhome,
Hans-Joachim Pichtc114728a2009-09-11 10:28:47 +0200103 },
104 { .ctl_name = 0 }
105};
106
107static struct ctl_table kern_dir_table[] = {
108 {
109 .ctl_name = CTL_KERN,
110 .procname = "kernel",
111 .maxlen = 0,
112 .mode = 0555,
113 .child = callhome_table,
114 },
115 { .ctl_name = 0 }
116};
117
118/*
119 * Function used to transfer asynchronous notification
120 * records which waits for send completion
121 */
122static int sclp_async_send_wait(char *message)
123{
124 struct async_evbuf *evb;
125 int rc;
126 unsigned long flags;
127
128 if (!callhome_enabled)
129 return 0;
130 sccb->evbuf.header.type = EVTYP_ASYNC;
131 sccb->evbuf.rtype = 0xA5;
132 sccb->evbuf.otype = 0x00;
133 evb = &sccb->evbuf;
134 request->command = SCLP_CMDW_WRITE_EVENT_DATA;
135 request->sccb = sccb;
136 request->status = SCLP_REQ_FILLED;
137 strncpy(sccb->evbuf.data, message, sizeof(sccb->evbuf.data));
138 /*
139 * Retain Queue
140 * e.g. 5639CC140 500 Red Hat RHEL5 Linux for zSeries (RHEL AS)
141 */
142 strncpy(sccb->evbuf.comp_id, "000000000", sizeof(sccb->evbuf.comp_id));
143 sccb->evbuf.header.length = sizeof(sccb->evbuf);
144 sccb->header.length = sizeof(sccb->evbuf) + sizeof(sccb->header);
145 sccb->header.function_code = SCLP_NORMAL_WRITE;
146 rc = sclp_add_request(request);
147 if (rc)
148 return rc;
149 spin_lock_irqsave(&sclp_async_lock, flags);
150 while (request->status != SCLP_REQ_DONE &&
151 request->status != SCLP_REQ_FAILED) {
152 sclp_sync_wait();
153 }
154 spin_unlock_irqrestore(&sclp_async_lock, flags);
155 if (request->status != SCLP_REQ_DONE)
156 return -EIO;
157 rc = ((struct sclp_async_sccb *)
158 request->sccb)->header.response_code;
159 if (rc != 0x0020)
160 return -EIO;
161 if (evb->header.flags != 0x80)
162 return -EIO;
163 return rc;
164}
165
166static int __init sclp_async_init(void)
167{
168 int rc;
169
170 rc = sclp_register(&sclp_async_register);
171 if (rc)
172 return rc;
173 callhome_sysctl_header = register_sysctl_table(kern_dir_table);
174 if (!callhome_sysctl_header) {
175 rc = -ENOMEM;
176 goto out_sclp;
177 }
178 if (!(sclp_async_register.sclp_receive_mask & EVTYP_ASYNC_MASK)) {
179 rc = -EOPNOTSUPP;
180 goto out_sclp;
181 }
182 rc = -ENOMEM;
183 request = kzalloc(sizeof(struct sclp_req), GFP_KERNEL);
184 if (!request)
185 goto out_sys;
186 sccb = (struct sclp_async_sccb *) get_zeroed_page(GFP_KERNEL | GFP_DMA);
187 if (!sccb)
188 goto out_mem;
189 rc = atomic_notifier_chain_register(&panic_notifier_list,
190 &call_home_panic_nb);
191 if (rc)
192 goto out_mem;
193
194 strncpy(nodename, init_utsname()->nodename, 64);
195 return 0;
196
197out_mem:
198 kfree(request);
199 free_page((unsigned long) sccb);
200out_sys:
201 unregister_sysctl_table(callhome_sysctl_header);
202out_sclp:
203 sclp_unregister(&sclp_async_register);
204 return rc;
205
206}
207module_init(sclp_async_init);
208
209static void __exit sclp_async_exit(void)
210{
211 atomic_notifier_chain_unregister(&panic_notifier_list,
212 &call_home_panic_nb);
213 unregister_sysctl_table(callhome_sysctl_header);
214 sclp_unregister(&sclp_async_register);
215 free_page((unsigned long) sccb);
216 kfree(request);
217}
218module_exit(sclp_async_exit);
219
220MODULE_AUTHOR("Copyright IBM Corp. 2009");
221MODULE_AUTHOR("Hans-Joachim Picht <hans@linux.vnet.ibm.com>");
222MODULE_LICENSE("GPL");
223MODULE_DESCRIPTION("SCLP Asynchronous Notification Records");