[S390] cio: use INIT_WORK to initialize struct work.
[linux-2.6-block.git] / drivers / s390 / net / smsgiucv.c
CommitLineData
1da177e4
LT
1/*
2 * IUCV special message driver
3 *
5da5e658 4 * Copyright 2003 IBM Deutschland Entwicklung GmbH, IBM Corporation
1da177e4
LT
5 * Author(s): Martin Schwidefsky (schwidefsky@de.ibm.com)
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2, or (at your option)
10 * any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 */
21
22#include <linux/module.h>
23#include <linux/init.h>
24#include <linux/errno.h>
25#include <linux/device.h>
5da5e658 26#include <net/iucv/iucv.h>
1da177e4
LT
27#include <asm/cpcmd.h>
28#include <asm/ebcdic.h>
5da5e658 29#include "smsgiucv.h"
1da177e4
LT
30
31struct smsg_callback {
32 struct list_head list;
33 char *prefix;
34 int len;
15439d74 35 void (*callback)(char *from, char *str);
1da177e4
LT
36};
37
38MODULE_AUTHOR
39 ("(C) 2003 IBM Corporation by Martin Schwidefsky (schwidefsky@de.ibm.com)");
40MODULE_DESCRIPTION ("Linux for S/390 IUCV special message driver");
41
5da5e658
MS
42static struct iucv_path *smsg_path;
43
1da177e4
LT
44static DEFINE_SPINLOCK(smsg_list_lock);
45static struct list_head smsg_list = LIST_HEAD_INIT(smsg_list);
46
5da5e658
MS
47static int smsg_path_pending(struct iucv_path *, u8 ipvmid[8], u8 ipuser[16]);
48static void smsg_message_pending(struct iucv_path *, struct iucv_message *);
49
50static struct iucv_handler smsg_handler = {
51 .path_pending = smsg_path_pending,
52 .message_pending = smsg_message_pending,
53};
54
55static int smsg_path_pending(struct iucv_path *path, u8 ipvmid[8],
56 u8 ipuser[16])
1da177e4 57{
5da5e658
MS
58 if (strncmp(ipvmid, "*MSG ", sizeof(ipvmid)) != 0)
59 return -EINVAL;
60 /* Path pending from *MSG. */
61 return iucv_path_accept(path, &smsg_handler, "SMSGIUCV ", NULL);
1da177e4
LT
62}
63
5da5e658
MS
64static void smsg_message_pending(struct iucv_path *path,
65 struct iucv_message *msg)
1da177e4
LT
66{
67 struct smsg_callback *cb;
5da5e658 68 unsigned char *buffer;
15439d74 69 unsigned char sender[9];
15439d74 70 int rc, i;
1da177e4 71
5da5e658
MS
72 buffer = kmalloc(msg->length + 1, GFP_ATOMIC | GFP_DMA);
73 if (!buffer) {
74 iucv_message_reject(path, msg);
1da177e4
LT
75 return;
76 }
5da5e658 77 rc = iucv_message_receive(path, msg, 0, buffer, msg->length, NULL);
1da177e4 78 if (rc == 0) {
5da5e658
MS
79 buffer[msg->length] = 0;
80 EBCASC(buffer, msg->length);
81 memcpy(sender, buffer, 8);
15439d74
MS
82 sender[8] = 0;
83 /* Remove trailing whitespace from the sender name. */
84 for (i = 7; i >= 0; i--) {
85 if (sender[i] != ' ' && sender[i] != '\t')
86 break;
87 sender[i] = 0;
88 }
1da177e4
LT
89 spin_lock(&smsg_list_lock);
90 list_for_each_entry(cb, &smsg_list, list)
5da5e658
MS
91 if (strncmp(buffer + 8, cb->prefix, cb->len) == 0) {
92 cb->callback(sender, buffer + 8);
1da177e4
LT
93 break;
94 }
95 spin_unlock(&smsg_list_lock);
96 }
5da5e658 97 kfree(buffer);
1da177e4
LT
98}
99
5da5e658
MS
100int smsg_register_callback(char *prefix,
101 void (*callback)(char *from, char *str))
1da177e4
LT
102{
103 struct smsg_callback *cb;
104
105 cb = kmalloc(sizeof(struct smsg_callback), GFP_KERNEL);
106 if (!cb)
107 return -ENOMEM;
108 cb->prefix = prefix;
109 cb->len = strlen(prefix);
110 cb->callback = callback;
5da5e658 111 spin_lock_bh(&smsg_list_lock);
1da177e4 112 list_add_tail(&cb->list, &smsg_list);
5da5e658 113 spin_unlock_bh(&smsg_list_lock);
1da177e4
LT
114 return 0;
115}
116
5da5e658
MS
117void smsg_unregister_callback(char *prefix,
118 void (*callback)(char *from, char *str))
1da177e4
LT
119{
120 struct smsg_callback *cb, *tmp;
121
5da5e658 122 spin_lock_bh(&smsg_list_lock);
d2c993d8 123 cb = NULL;
1da177e4
LT
124 list_for_each_entry(tmp, &smsg_list, list)
125 if (tmp->callback == callback &&
126 strcmp(tmp->prefix, prefix) == 0) {
127 cb = tmp;
128 list_del(&cb->list);
129 break;
130 }
5da5e658 131 spin_unlock_bh(&smsg_list_lock);
1da177e4
LT
132 kfree(cb);
133}
134
5da5e658
MS
135static struct device_driver smsg_driver = {
136 .name = "SMSGIUCV",
137 .bus = &iucv_bus,
138};
139
140static void __exit smsg_exit(void)
1da177e4 141{
5da5e658
MS
142 cpcmd("SET SMSG IUCV", NULL, 0, NULL);
143 iucv_unregister(&smsg_handler, 1);
144 driver_unregister(&smsg_driver);
1da177e4
LT
145}
146
5da5e658 147static int __init smsg_init(void)
1da177e4 148{
1da177e4
LT
149 int rc;
150
151 rc = driver_register(&smsg_driver);
5da5e658
MS
152 if (rc != 0)
153 goto out;
154 rc = iucv_register(&smsg_handler, 1);
155 if (rc) {
1da177e4 156 printk(KERN_ERR "SMSGIUCV: failed to register to iucv");
5da5e658
MS
157 rc = -EIO; /* better errno ? */
158 goto out_driver;
159 }
160 smsg_path = iucv_path_alloc(255, 0, GFP_KERNEL);
161 if (!smsg_path) {
162 rc = -ENOMEM;
163 goto out_register;
1da177e4 164 }
5da5e658
MS
165 rc = iucv_path_connect(smsg_path, &smsg_handler, "*MSG ",
166 NULL, NULL, NULL);
1da177e4
LT
167 if (rc) {
168 printk(KERN_ERR "SMSGIUCV: failed to connect to *MSG");
5da5e658
MS
169 rc = -EIO; /* better errno ? */
170 goto out_free;
1da177e4 171 }
6b979de3 172 cpcmd("SET SMSG IUCV", NULL, 0, NULL);
1da177e4 173 return 0;
5da5e658
MS
174
175out_free:
176 iucv_path_free(smsg_path);
177out_register:
178 iucv_unregister(&smsg_handler, 1);
179out_driver:
180 driver_unregister(&smsg_driver);
181out:
182 return rc;
1da177e4
LT
183}
184
185module_init(smsg_init);
186module_exit(smsg_exit);
187MODULE_LICENSE("GPL");
188
189EXPORT_SYMBOL(smsg_register_callback);
190EXPORT_SYMBOL(smsg_unregister_callback);