blob: a851d34c642b5d26866fafdde925eb48ddf61003 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * IUCV special message driver
3 *
Martin Schwidefsky6a1d96d2009-06-16 10:30:46 +02004 * Copyright IBM Corp. 2003, 2009
5 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 * Author(s): Martin Schwidefsky (schwidefsky@de.ibm.com)
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2, or (at your option)
11 * any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 */
22
23#include <linux/module.h>
24#include <linux/init.h>
25#include <linux/errno.h>
26#include <linux/device.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090027#include <linux/slab.h>
Martin Schwidefsky5da5e652007-02-08 13:51:11 -080028#include <net/iucv/iucv.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <asm/cpcmd.h>
30#include <asm/ebcdic.h>
Martin Schwidefsky5da5e652007-02-08 13:51:11 -080031#include "smsgiucv.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
33struct smsg_callback {
34 struct list_head list;
Hendrik Brueckner09003ed2010-03-08 12:26:25 +010035 const char *prefix;
Linus Torvalds1da177e2005-04-16 15:20:36 -070036 int len;
Hendrik Brueckner09003ed2010-03-08 12:26:25 +010037 void (*callback)(const char *from, char *str);
Linus Torvalds1da177e2005-04-16 15:20:36 -070038};
39
40MODULE_AUTHOR
41 ("(C) 2003 IBM Corporation by Martin Schwidefsky (schwidefsky@de.ibm.com)");
42MODULE_DESCRIPTION ("Linux for S/390 IUCV special message driver");
43
Martin Schwidefsky5da5e652007-02-08 13:51:11 -080044static struct iucv_path *smsg_path;
Martin Schwidefsky6a1d96d2009-06-16 10:30:46 +020045/* dummy device used as trigger for PM functions */
46static struct device *smsg_dev;
Martin Schwidefsky5da5e652007-02-08 13:51:11 -080047
Linus Torvalds1da177e2005-04-16 15:20:36 -070048static DEFINE_SPINLOCK(smsg_list_lock);
Denis Chengc11ca972008-01-26 14:11:13 +010049static LIST_HEAD(smsg_list);
Ursula Braun59b60e92010-06-21 22:57:02 +000050static int iucv_path_connected;
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
Ursula Braun91e60eb2015-09-18 16:06:52 +020052static int smsg_path_pending(struct iucv_path *, u8 *, u8 *);
Martin Schwidefsky5da5e652007-02-08 13:51:11 -080053static void smsg_message_pending(struct iucv_path *, struct iucv_message *);
54
55static struct iucv_handler smsg_handler = {
56 .path_pending = smsg_path_pending,
57 .message_pending = smsg_message_pending,
58};
59
Ursula Braun91e60eb2015-09-18 16:06:52 +020060static int smsg_path_pending(struct iucv_path *path, u8 *ipvmid, u8 *ipuser)
Linus Torvalds1da177e2005-04-16 15:20:36 -070061{
Stefan Weil08b01832011-02-02 06:04:36 +000062 if (strncmp(ipvmid, "*MSG ", 8) != 0)
Martin Schwidefsky5da5e652007-02-08 13:51:11 -080063 return -EINVAL;
64 /* Path pending from *MSG. */
65 return iucv_path_accept(path, &smsg_handler, "SMSGIUCV ", NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -070066}
67
Martin Schwidefsky5da5e652007-02-08 13:51:11 -080068static void smsg_message_pending(struct iucv_path *path,
69 struct iucv_message *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -070070{
71 struct smsg_callback *cb;
Martin Schwidefsky5da5e652007-02-08 13:51:11 -080072 unsigned char *buffer;
Martin Schwidefsky15439d72005-05-01 08:58:58 -070073 unsigned char sender[9];
Martin Schwidefsky15439d72005-05-01 08:58:58 -070074 int rc, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
Martin Schwidefsky5da5e652007-02-08 13:51:11 -080076 buffer = kmalloc(msg->length + 1, GFP_ATOMIC | GFP_DMA);
77 if (!buffer) {
78 iucv_message_reject(path, msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 return;
80 }
Martin Schwidefsky5da5e652007-02-08 13:51:11 -080081 rc = iucv_message_receive(path, msg, 0, buffer, msg->length, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 if (rc == 0) {
Martin Schwidefsky5da5e652007-02-08 13:51:11 -080083 buffer[msg->length] = 0;
84 EBCASC(buffer, msg->length);
85 memcpy(sender, buffer, 8);
Martin Schwidefsky15439d72005-05-01 08:58:58 -070086 sender[8] = 0;
87 /* Remove trailing whitespace from the sender name. */
88 for (i = 7; i >= 0; i--) {
89 if (sender[i] != ' ' && sender[i] != '\t')
90 break;
91 sender[i] = 0;
92 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 spin_lock(&smsg_list_lock);
94 list_for_each_entry(cb, &smsg_list, list)
Martin Schwidefsky5da5e652007-02-08 13:51:11 -080095 if (strncmp(buffer + 8, cb->prefix, cb->len) == 0) {
96 cb->callback(sender, buffer + 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 break;
98 }
99 spin_unlock(&smsg_list_lock);
100 }
Martin Schwidefsky5da5e652007-02-08 13:51:11 -0800101 kfree(buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102}
103
Hendrik Brueckner09003ed2010-03-08 12:26:25 +0100104int smsg_register_callback(const char *prefix,
105 void (*callback)(const char *from, char *str))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106{
107 struct smsg_callback *cb;
108
109 cb = kmalloc(sizeof(struct smsg_callback), GFP_KERNEL);
110 if (!cb)
111 return -ENOMEM;
112 cb->prefix = prefix;
113 cb->len = strlen(prefix);
114 cb->callback = callback;
Martin Schwidefsky5da5e652007-02-08 13:51:11 -0800115 spin_lock_bh(&smsg_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 list_add_tail(&cb->list, &smsg_list);
Martin Schwidefsky5da5e652007-02-08 13:51:11 -0800117 spin_unlock_bh(&smsg_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 return 0;
119}
120
Hendrik Brueckner09003ed2010-03-08 12:26:25 +0100121void smsg_unregister_callback(const char *prefix,
122 void (*callback)(const char *from,
123 char *str))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124{
125 struct smsg_callback *cb, *tmp;
126
Martin Schwidefsky5da5e652007-02-08 13:51:11 -0800127 spin_lock_bh(&smsg_list_lock);
Heiko Carstensd2c993d2006-07-12 16:41:55 +0200128 cb = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 list_for_each_entry(tmp, &smsg_list, list)
130 if (tmp->callback == callback &&
131 strcmp(tmp->prefix, prefix) == 0) {
132 cb = tmp;
133 list_del(&cb->list);
134 break;
135 }
Martin Schwidefsky5da5e652007-02-08 13:51:11 -0800136 spin_unlock_bh(&smsg_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 kfree(cb);
138}
139
Martin Schwidefsky6a1d96d2009-06-16 10:30:46 +0200140static int smsg_pm_freeze(struct device *dev)
141{
142#ifdef CONFIG_PM_DEBUG
143 printk(KERN_WARNING "smsg_pm_freeze\n");
144#endif
Ursula Braun59b60e92010-06-21 22:57:02 +0000145 if (smsg_path && iucv_path_connected) {
Martin Schwidefsky6a1d96d2009-06-16 10:30:46 +0200146 iucv_path_sever(smsg_path, NULL);
Ursula Braun59b60e92010-06-21 22:57:02 +0000147 iucv_path_connected = 0;
148 }
Martin Schwidefsky6a1d96d2009-06-16 10:30:46 +0200149 return 0;
150}
151
152static int smsg_pm_restore_thaw(struct device *dev)
153{
154 int rc;
155
156#ifdef CONFIG_PM_DEBUG
157 printk(KERN_WARNING "smsg_pm_restore_thaw\n");
158#endif
Hendrik Brueckner1c8161a2012-10-15 19:21:17 +0000159 if (smsg_path && !iucv_path_connected) {
Martin Schwidefsky6a1d96d2009-06-16 10:30:46 +0200160 memset(smsg_path, 0, sizeof(*smsg_path));
161 smsg_path->msglim = 255;
162 smsg_path->flags = 0;
163 rc = iucv_path_connect(smsg_path, &smsg_handler, "*MSG ",
164 NULL, NULL, NULL);
Martin Schwidefsky8ca45662009-10-29 15:04:08 +0100165#ifdef CONFIG_PM_DEBUG
166 if (rc)
167 printk(KERN_ERR
168 "iucv_path_connect returned with rc %i\n", rc);
169#endif
Ursula Braun59b60e92010-06-21 22:57:02 +0000170 if (!rc)
171 iucv_path_connected = 1;
Martin Schwidefsky8ca45662009-10-29 15:04:08 +0100172 cpcmd("SET SMSG IUCV", NULL, 0, NULL);
Martin Schwidefsky6a1d96d2009-06-16 10:30:46 +0200173 }
174 return 0;
175}
176
Alexey Dobriyan47145212009-12-14 18:00:08 -0800177static const struct dev_pm_ops smsg_pm_ops = {
Martin Schwidefsky6a1d96d2009-06-16 10:30:46 +0200178 .freeze = smsg_pm_freeze,
179 .thaw = smsg_pm_restore_thaw,
180 .restore = smsg_pm_restore_thaw,
181};
182
Martin Schwidefsky5da5e652007-02-08 13:51:11 -0800183static struct device_driver smsg_driver = {
Martin Schwidefsky6a1d96d2009-06-16 10:30:46 +0200184 .owner = THIS_MODULE,
Hendrik Brueckner1ffaa642010-03-08 12:26:26 +0100185 .name = SMSGIUCV_DRV_NAME,
Martin Schwidefsky5da5e652007-02-08 13:51:11 -0800186 .bus = &iucv_bus,
Martin Schwidefsky6a1d96d2009-06-16 10:30:46 +0200187 .pm = &smsg_pm_ops,
Martin Schwidefsky5da5e652007-02-08 13:51:11 -0800188};
189
190static void __exit smsg_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191{
Martin Schwidefsky5da5e652007-02-08 13:51:11 -0800192 cpcmd("SET SMSG IUCV", NULL, 0, NULL);
Martin Schwidefsky6a1d96d2009-06-16 10:30:46 +0200193 device_unregister(smsg_dev);
Martin Schwidefsky5da5e652007-02-08 13:51:11 -0800194 iucv_unregister(&smsg_handler, 1);
195 driver_unregister(&smsg_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196}
197
Martin Schwidefsky5da5e652007-02-08 13:51:11 -0800198static int __init smsg_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 int rc;
201
Christian Borntraeger0fc3ddd2007-11-05 11:10:08 +0100202 if (!MACHINE_IS_VM) {
203 rc = -EPROTONOSUPPORT;
204 goto out;
205 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 rc = driver_register(&smsg_driver);
Martin Schwidefsky5da5e652007-02-08 13:51:11 -0800207 if (rc != 0)
208 goto out;
209 rc = iucv_register(&smsg_handler, 1);
Martin Schwidefskyd5ddc802008-07-14 09:59:33 +0200210 if (rc)
Martin Schwidefsky5da5e652007-02-08 13:51:11 -0800211 goto out_driver;
Martin Schwidefsky5da5e652007-02-08 13:51:11 -0800212 smsg_path = iucv_path_alloc(255, 0, GFP_KERNEL);
213 if (!smsg_path) {
214 rc = -ENOMEM;
215 goto out_register;
216 }
217 rc = iucv_path_connect(smsg_path, &smsg_handler, "*MSG ",
218 NULL, NULL, NULL);
Martin Schwidefskyd5ddc802008-07-14 09:59:33 +0200219 if (rc)
Martin Schwidefsky6a1d96d2009-06-16 10:30:46 +0200220 goto out_free_path;
Ursula Braun59b60e92010-06-21 22:57:02 +0000221 else
222 iucv_path_connected = 1;
Martin Schwidefsky6a1d96d2009-06-16 10:30:46 +0200223 smsg_dev = kzalloc(sizeof(struct device), GFP_KERNEL);
224 if (!smsg_dev) {
225 rc = -ENOMEM;
226 goto out_free_path;
227 }
228 dev_set_name(smsg_dev, "smsg_iucv");
229 smsg_dev->bus = &iucv_bus;
230 smsg_dev->parent = iucv_root;
231 smsg_dev->release = (void (*)(struct device *))kfree;
232 smsg_dev->driver = &smsg_driver;
233 rc = device_register(smsg_dev);
234 if (rc)
Sebastian Ottc6304932009-09-11 10:28:38 +0200235 goto out_put;
Martin Schwidefsky6a1d96d2009-06-16 10:30:46 +0200236
Christian Borntraeger6b979de2005-06-25 14:55:32 -0700237 cpcmd("SET SMSG IUCV", NULL, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 return 0;
Martin Schwidefsky5da5e652007-02-08 13:51:11 -0800239
Sebastian Ottc6304932009-09-11 10:28:38 +0200240out_put:
241 put_device(smsg_dev);
Martin Schwidefsky6a1d96d2009-06-16 10:30:46 +0200242out_free_path:
Martin Schwidefsky5da5e652007-02-08 13:51:11 -0800243 iucv_path_free(smsg_path);
Martin Schwidefsky6a1d96d2009-06-16 10:30:46 +0200244 smsg_path = NULL;
Martin Schwidefsky5da5e652007-02-08 13:51:11 -0800245out_register:
246 iucv_unregister(&smsg_handler, 1);
247out_driver:
248 driver_unregister(&smsg_driver);
249out:
250 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251}
252
253module_init(smsg_init);
254module_exit(smsg_exit);
255MODULE_LICENSE("GPL");
256
257EXPORT_SYMBOL(smsg_register_callback);
258EXPORT_SYMBOL(smsg_unregister_callback);