misc: Grammar s/addition/additional/
[linux-2.6-block.git] / drivers / w1 / w1_netlink.c
CommitLineData
1da177e4
LT
1/*
2 * w1_netlink.c
3 *
a8018766 4 * Copyright (c) 2003 Evgeniy Polyakov <zbr@ioremap.net>
1da177e4
LT
5 *
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 of the License, or
10 * (at your option) 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 */
21
5a0e3ad6 22#include <linux/slab.h>
1da177e4
LT
23#include <linux/skbuff.h>
24#include <linux/netlink.h>
12003375 25#include <linux/connector.h>
1da177e4
LT
26
27#include "w1.h"
28#include "w1_log.h"
29#include "w1_netlink.h"
30
46e07f6e 31#if defined(CONFIG_W1_CON) && (defined(CONFIG_CONNECTOR) || (defined(CONFIG_CONNECTOR_MODULE) && defined(CONFIG_W1_MODULE)))
1da177e4
LT
32void w1_netlink_send(struct w1_master *dev, struct w1_netlink_msg *msg)
33{
12003375
EP
34 char buf[sizeof(struct cn_msg) + sizeof(struct w1_netlink_msg)];
35 struct cn_msg *m = (struct cn_msg *)buf;
36 struct w1_netlink_msg *w = (struct w1_netlink_msg *)(m+1);
1da177e4 37
12003375 38 memset(buf, 0, sizeof(buf));
1da177e4 39
12003375
EP
40 m->id.idx = CN_W1_IDX;
41 m->id.val = CN_W1_VAL;
1da177e4 42
12003375
EP
43 m->seq = dev->seq++;
44 m->len = sizeof(struct w1_netlink_msg);
1da177e4 45
12003375 46 memcpy(w, msg, sizeof(struct w1_netlink_msg));
1da177e4 47
5dbf5671 48 cn_netlink_send(m, dev->portid, 0, GFP_KERNEL);
12003375 49}
1da177e4 50
3b838407
EP
51static void w1_send_slave(struct w1_master *dev, u64 rn)
52{
53 struct cn_msg *msg = dev->priv;
54 struct w1_netlink_msg *hdr = (struct w1_netlink_msg *)(msg + 1);
55 struct w1_netlink_cmd *cmd = (struct w1_netlink_cmd *)(hdr + 1);
56 int avail;
6b355b33 57 u64 *data;
3b838407
EP
58
59 avail = dev->priv_size - cmd->len;
60
6b355b33
DF
61 if (avail < 8) {
62 msg->ack++;
5dbf5671 63 cn_netlink_send(msg, dev->portid, 0, GFP_KERNEL);
3b838407 64
6b355b33
DF
65 msg->len = sizeof(struct w1_netlink_msg) +
66 sizeof(struct w1_netlink_cmd);
67 hdr->len = sizeof(struct w1_netlink_cmd);
68 cmd->len = 0;
3b838407
EP
69 }
70
6b355b33 71 data = (void *)(cmd + 1) + cmd->len;
3b838407 72
6b355b33
DF
73 *data = rn;
74 cmd->len += 8;
75 hdr->len += 8;
76 msg->len += 8;
3b838407
EP
77}
78
70b34d2e 79static void w1_found_send_slave(struct w1_master *dev, u64 rn)
12003375 80{
70b34d2e
DF
81 /* update kernel slave list */
82 w1_slave_found(dev, rn);
1da177e4 83
70b34d2e
DF
84 w1_send_slave(dev, rn);
85}
86
87/* Get the current slave list, or search (with or without alarm) */
88static int w1_get_slaves(struct w1_master *dev,
89 struct cn_msg *req_msg, struct w1_netlink_msg *req_hdr,
90 struct w1_netlink_cmd *req_cmd)
91{
92 struct cn_msg *msg;
93 struct w1_netlink_msg *hdr;
94 struct w1_netlink_cmd *cmd;
95 struct w1_slave *sl;
96
97 msg = kzalloc(PAGE_SIZE, GFP_KERNEL);
98 if (!msg)
99 return -ENOMEM;
100
101 msg->id = req_msg->id;
102 msg->seq = req_msg->seq;
103 msg->ack = 0;
104 msg->len = sizeof(struct w1_netlink_msg) +
105 sizeof(struct w1_netlink_cmd);
3b838407 106
70b34d2e
DF
107 hdr = (struct w1_netlink_msg *)(msg + 1);
108 cmd = (struct w1_netlink_cmd *)(hdr + 1);
109
110 hdr->type = W1_MASTER_CMD;
111 hdr->id = req_hdr->id;
112 hdr->len = sizeof(struct w1_netlink_cmd);
113
114 cmd->cmd = req_cmd->cmd;
115 cmd->len = 0;
116
117 dev->priv = msg;
118 dev->priv_size = PAGE_SIZE - msg->len - sizeof(struct cn_msg);
119
120 if (req_cmd->cmd == W1_CMD_LIST_SLAVES) {
121 __u64 rn;
9fcbbac5 122 mutex_lock(&dev->list_mutex);
70b34d2e
DF
123 list_for_each_entry(sl, &dev->slist, w1_slave_entry) {
124 memcpy(&rn, &sl->reg_num, sizeof(rn));
125 w1_send_slave(dev, rn);
126 }
9fcbbac5 127 mutex_unlock(&dev->list_mutex);
70b34d2e
DF
128 } else {
129 w1_search_process_cb(dev, cmd->cmd == W1_CMD_ALARM_SEARCH ?
130 W1_ALARM_SEARCH : W1_SEARCH, w1_found_send_slave);
131 }
3b838407
EP
132
133 msg->ack = 0;
5dbf5671 134 cn_netlink_send(msg, dev->portid, 0, GFP_KERNEL);
3b838407
EP
135
136 dev->priv = NULL;
137 dev->priv_size = 0;
1da177e4 138
70b34d2e
DF
139 kfree(msg);
140
12003375 141 return 0;
1da177e4 142}
2d833179 143
c7e26631 144static int w1_send_read_reply(struct cn_msg *msg, struct w1_netlink_msg *hdr,
5dbf5671 145 struct w1_netlink_cmd *cmd, u32 portid)
2d833179 146{
12003375
EP
147 void *data;
148 struct w1_netlink_msg *h;
149 struct w1_netlink_cmd *c;
150 struct cn_msg *cm;
151 int err;
152
153 data = kzalloc(sizeof(struct cn_msg) +
154 sizeof(struct w1_netlink_msg) +
155 sizeof(struct w1_netlink_cmd) +
156 cmd->len, GFP_KERNEL);
157 if (!data)
158 return -ENOMEM;
159
160 cm = (struct cn_msg *)(data);
161 h = (struct w1_netlink_msg *)(cm + 1);
162 c = (struct w1_netlink_cmd *)(h + 1);
163
164 memcpy(cm, msg, sizeof(struct cn_msg));
165 memcpy(h, hdr, sizeof(struct w1_netlink_msg));
166 memcpy(c, cmd, sizeof(struct w1_netlink_cmd));
167
168 cm->ack = msg->seq+1;
c7e26631
EP
169 cm->len = sizeof(struct w1_netlink_msg) +
170 sizeof(struct w1_netlink_cmd) + cmd->len;
12003375
EP
171
172 h->len = sizeof(struct w1_netlink_cmd) + cmd->len;
173
174 memcpy(c->data, cmd->data, c->len);
175
5dbf5671 176 err = cn_netlink_send(cm, portid, 0, GFP_KERNEL);
12003375
EP
177
178 kfree(data);
179
180 return err;
181}
182
c7e26631 183static int w1_process_command_io(struct w1_master *dev, struct cn_msg *msg,
12003375
EP
184 struct w1_netlink_msg *hdr, struct w1_netlink_cmd *cmd)
185{
186 int err = 0;
187
c7e26631
EP
188 switch (cmd->cmd) {
189 case W1_CMD_TOUCH:
190 w1_touch_block(dev, cmd->data, cmd->len);
5dbf5671 191 w1_send_read_reply(msg, hdr, cmd, dev->portid);
c7e26631
EP
192 break;
193 case W1_CMD_READ:
194 w1_read_block(dev, cmd->data, cmd->len);
5dbf5671 195 w1_send_read_reply(msg, hdr, cmd, dev->portid);
c7e26631
EP
196 break;
197 case W1_CMD_WRITE:
198 w1_write_block(dev, cmd->data, cmd->len);
199 break;
200 default:
4037014e 201 err = -EINVAL;
c7e26631
EP
202 break;
203 }
204
205 return err;
206}
207
70b34d2e
DF
208static int w1_process_command_addremove(struct w1_master *dev,
209 struct cn_msg *msg, struct w1_netlink_msg *hdr,
210 struct w1_netlink_cmd *cmd)
c7e26631 211{
70b34d2e
DF
212 struct w1_slave *sl;
213 int err = 0;
214 struct w1_reg_num *id;
c7e26631 215
70b34d2e
DF
216 if (cmd->len != 8)
217 return -EINVAL;
c7e26631 218
70b34d2e 219 id = (struct w1_reg_num *)cmd->data;
c7e26631 220
70b34d2e
DF
221 sl = w1_slave_search_device(dev, id);
222 switch (cmd->cmd) {
223 case W1_CMD_SLAVE_ADD:
224 if (sl)
225 err = -EINVAL;
226 else
227 err = w1_attach_slave_device(dev, id);
228 break;
229 case W1_CMD_SLAVE_REMOVE:
230 if (sl)
231 w1_slave_detach(sl);
232 else
233 err = -EINVAL;
234 break;
235 default:
236 err = -EINVAL;
237 break;
238 }
c7e26631 239
70b34d2e
DF
240 return err;
241}
c7e26631 242
70b34d2e
DF
243static int w1_process_command_master(struct w1_master *dev,
244 struct cn_msg *req_msg, struct w1_netlink_msg *req_hdr,
245 struct w1_netlink_cmd *req_cmd)
246{
247 int err = -EINVAL;
12003375 248
d3a8a9db
DF
249 /* drop bus_mutex for search (does it's own locking), and add/remove
250 * which doesn't use the bus
251 */
70b34d2e 252 switch (req_cmd->cmd) {
c7e26631
EP
253 case W1_CMD_SEARCH:
254 case W1_CMD_ALARM_SEARCH:
70b34d2e 255 case W1_CMD_LIST_SLAVES:
d3a8a9db 256 mutex_unlock(&dev->bus_mutex);
70b34d2e 257 err = w1_get_slaves(dev, req_msg, req_hdr, req_cmd);
d3a8a9db 258 mutex_lock(&dev->bus_mutex);
c7e26631
EP
259 break;
260 case W1_CMD_READ:
261 case W1_CMD_WRITE:
262 case W1_CMD_TOUCH:
4037014e 263 err = w1_process_command_io(dev, req_msg, req_hdr, req_cmd);
c7e26631 264 break;
f89735c4
EP
265 case W1_CMD_RESET:
266 err = w1_reset_bus(dev);
267 break;
70b34d2e
DF
268 case W1_CMD_SLAVE_ADD:
269 case W1_CMD_SLAVE_REMOVE:
d3a8a9db
DF
270 mutex_unlock(&dev->bus_mutex);
271 mutex_lock(&dev->mutex);
70b34d2e
DF
272 err = w1_process_command_addremove(dev, req_msg, req_hdr,
273 req_cmd);
d3a8a9db
DF
274 mutex_unlock(&dev->mutex);
275 mutex_lock(&dev->bus_mutex);
70b34d2e 276 break;
c7e26631 277 default:
4037014e 278 err = -EINVAL;
c7e26631 279 break;
2d833179
EP
280 }
281
12003375
EP
282 return err;
283}
284
c7e26631
EP
285static int w1_process_command_slave(struct w1_slave *sl, struct cn_msg *msg,
286 struct w1_netlink_msg *hdr, struct w1_netlink_cmd *cmd)
287{
288 dev_dbg(&sl->master->dev, "%s: %02x.%012llx.%02x: cmd=%02x, len=%u.\n",
289 __func__, sl->reg_num.family, (unsigned long long)sl->reg_num.id,
290 sl->reg_num.crc, cmd->cmd, cmd->len);
291
292 return w1_process_command_io(sl->master, msg, hdr, cmd);
293}
294
5dbf5671
DF
295static int w1_process_command_root(struct cn_msg *msg,
296 struct w1_netlink_msg *mcmd, u32 portid)
610705e7
EP
297{
298 struct w1_master *m;
299 struct cn_msg *cn;
300 struct w1_netlink_msg *w;
301 u32 *id;
302
303 if (mcmd->type != W1_LIST_MASTERS) {
304 printk(KERN_NOTICE "%s: msg: %x.%x, wrong type: %u, len: %u.\n",
c7e26631 305 __func__, msg->id.idx, msg->id.val, mcmd->type, mcmd->len);
610705e7
EP
306 return -EPROTO;
307 }
308
309 cn = kmalloc(PAGE_SIZE, GFP_KERNEL);
310 if (!cn)
311 return -ENOMEM;
312
313 cn->id.idx = CN_W1_IDX;
314 cn->id.val = CN_W1_VAL;
315
316 cn->seq = msg->seq;
317 cn->ack = 1;
318 cn->len = sizeof(struct w1_netlink_msg);
319 w = (struct w1_netlink_msg *)(cn + 1);
320
321 w->type = W1_LIST_MASTERS;
4037014e 322 w->status = 0;
610705e7
EP
323 w->len = 0;
324 id = (u32 *)(w + 1);
325
326 mutex_lock(&w1_mlock);
327 list_for_each_entry(m, &w1_masters, w1_master_entry) {
328 if (cn->len + sizeof(*id) > PAGE_SIZE - sizeof(struct cn_msg)) {
5dbf5671 329 cn_netlink_send(cn, portid, 0, GFP_KERNEL);
610705e7
EP
330 cn->ack++;
331 cn->len = sizeof(struct w1_netlink_msg);
332 w->len = 0;
333 id = (u32 *)(w + 1);
334 }
335
336 *id = m->id;
337 w->len += sizeof(*id);
338 cn->len += sizeof(*id);
339 id++;
340 }
341 cn->ack = 0;
5dbf5671 342 cn_netlink_send(cn, portid, 0, GFP_KERNEL);
610705e7
EP
343 mutex_unlock(&w1_mlock);
344
345 kfree(cn);
346 return 0;
347}
348
4037014e 349static int w1_netlink_send_error(struct cn_msg *rcmsg, struct w1_netlink_msg *rmsg,
5dbf5671 350 struct w1_netlink_cmd *rcmd, int portid, int error)
4037014e
EP
351{
352 struct cn_msg *cmsg;
353 struct w1_netlink_msg *msg;
354 struct w1_netlink_cmd *cmd;
355
356 cmsg = kzalloc(sizeof(*msg) + sizeof(*cmd) + sizeof(*cmsg), GFP_KERNEL);
357 if (!cmsg)
358 return -ENOMEM;
359
360 msg = (struct w1_netlink_msg *)(cmsg + 1);
361 cmd = (struct w1_netlink_cmd *)(msg + 1);
362
363 memcpy(cmsg, rcmsg, sizeof(*cmsg));
364 cmsg->len = sizeof(*msg);
365
366 memcpy(msg, rmsg, sizeof(*msg));
367 msg->len = 0;
368 msg->status = (short)-error;
369
370 if (rcmd) {
371 memcpy(cmd, rcmd, sizeof(*cmd));
372 cmd->len = 0;
373 msg->len += sizeof(*cmd);
374 cmsg->len += sizeof(*cmd);
375 }
376
5dbf5671 377 error = cn_netlink_send(cmsg, portid, 0, GFP_KERNEL);
4037014e
EP
378 kfree(cmsg);
379
380 return error;
381}
382
9fcbbac5
DF
383/* Bundle together a reference count, the full message, and broken out
384 * commands to be executed on each w1 master kthread in one memory allocation.
385 */
386struct w1_cb_block {
387 atomic_t refcnt;
5dbf5671 388 u32 portid; /* Sending process port ID */
9fcbbac5
DF
389 struct cn_msg msg;
390 /* cn_msg data */
391 /* one or more variable length struct w1_cb_node */
392};
393struct w1_cb_node {
394 struct w1_async_cmd async;
395 /* pointers within w1_cb_block and msg data */
396 struct w1_cb_block *block;
397 struct w1_netlink_msg *m;
398 struct w1_slave *sl;
399 struct w1_master *dev;
400};
401
402static void w1_process_cb(struct w1_master *dev, struct w1_async_cmd *async_cmd)
403{
404 struct w1_cb_node *node = container_of(async_cmd, struct w1_cb_node,
405 async);
406 u16 mlen = node->m->len;
407 u8 *cmd_data = node->m->data;
408 int err = 0;
409 struct w1_slave *sl = node->sl;
410 struct w1_netlink_cmd *cmd = NULL;
411
d3a8a9db 412 mutex_lock(&dev->bus_mutex);
5dbf5671 413 dev->portid = node->block->portid;
9fcbbac5
DF
414 if (sl && w1_reset_select_slave(sl))
415 err = -ENODEV;
416
417 while (mlen && !err) {
418 cmd = (struct w1_netlink_cmd *)cmd_data;
419
420 if (cmd->len + sizeof(struct w1_netlink_cmd) > mlen) {
421 err = -E2BIG;
422 break;
423 }
424
425 if (sl)
426 err = w1_process_command_slave(sl, &node->block->msg,
427 node->m, cmd);
428 else
429 err = w1_process_command_master(dev, &node->block->msg,
430 node->m, cmd);
431
5dbf5671
DF
432 w1_netlink_send_error(&node->block->msg, node->m, cmd,
433 node->block->portid, err);
9fcbbac5
DF
434 err = 0;
435
436 cmd_data += cmd->len + sizeof(struct w1_netlink_cmd);
437 mlen -= cmd->len + sizeof(struct w1_netlink_cmd);
438 }
439
440 if (!cmd || err)
5dbf5671
DF
441 w1_netlink_send_error(&node->block->msg, node->m, cmd,
442 node->block->portid, err);
9fcbbac5
DF
443
444 if (sl)
445 w1_unref_slave(sl);
446 else
447 atomic_dec(&dev->refcnt);
5dbf5671 448 dev->portid = 0;
d3a8a9db 449 mutex_unlock(&dev->bus_mutex);
9fcbbac5
DF
450
451 mutex_lock(&dev->list_mutex);
452 list_del(&async_cmd->async_entry);
453 mutex_unlock(&dev->list_mutex);
454
455 if (atomic_sub_return(1, &node->block->refcnt) == 0)
456 kfree(node->block);
457}
458
7069331d 459static void w1_cn_callback(struct cn_msg *msg, struct netlink_skb_parms *nsp)
12003375 460{
12003375 461 struct w1_netlink_msg *m = (struct w1_netlink_msg *)(msg + 1);
12003375
EP
462 struct w1_slave *sl;
463 struct w1_master *dev;
9fcbbac5 464 u16 msg_len;
12003375 465 int err = 0;
9fcbbac5
DF
466 struct w1_cb_block *block = NULL;
467 struct w1_cb_node *node = NULL;
468 int node_count = 0;
469
470 /* Count the number of master or slave commands there are to allocate
471 * space for one cb_node each.
472 */
473 msg_len = msg->len;
474 while (msg_len && !err) {
475 if (m->len + sizeof(struct w1_netlink_msg) > msg_len) {
476 err = -E2BIG;
477 break;
478 }
479
480 if (m->type == W1_MASTER_CMD || m->type == W1_SLAVE_CMD)
481 ++node_count;
482
483 msg_len -= sizeof(struct w1_netlink_msg) + m->len;
484 m = (struct w1_netlink_msg *)(((u8 *)m) +
485 sizeof(struct w1_netlink_msg) + m->len);
486 }
487 m = (struct w1_netlink_msg *)(msg + 1);
488 if (node_count) {
489 /* msg->len doesn't include itself */
490 long size = sizeof(struct w1_cb_block) + msg->len +
491 node_count*sizeof(struct w1_cb_node);
492 block = kmalloc(size, GFP_KERNEL);
493 if (!block) {
5dbf5671
DF
494 w1_netlink_send_error(msg, m, NULL, nsp->portid,
495 -ENOMEM);
9fcbbac5
DF
496 return;
497 }
498 atomic_set(&block->refcnt, 1);
5dbf5671 499 block->portid = nsp->portid;
9fcbbac5
DF
500 memcpy(&block->msg, msg, sizeof(*msg) + msg->len);
501 node = (struct w1_cb_node *)((u8 *)block->msg.data + msg->len);
502 }
12003375 503
9fcbbac5
DF
504 msg_len = msg->len;
505 while (msg_len && !err) {
12003375
EP
506 struct w1_reg_num id;
507 u16 mlen = m->len;
12003375
EP
508
509 dev = NULL;
510 sl = NULL;
511
512 memcpy(&id, m->id.id, sizeof(id));
513#if 0
514 printk("%s: %02x.%012llx.%02x: type=%02x, len=%u.\n",
515 __func__, id.family, (unsigned long long)id.id, id.crc, m->type, m->len);
516#endif
9fcbbac5 517 if (m->len + sizeof(struct w1_netlink_msg) > msg_len) {
12003375
EP
518 err = -E2BIG;
519 break;
520 }
521
12003375
EP
522 if (m->type == W1_MASTER_CMD) {
523 dev = w1_search_master_id(m->id.mst.id);
524 } else if (m->type == W1_SLAVE_CMD) {
525 sl = w1_search_slave(&id);
526 if (sl)
527 dev = sl->master;
610705e7 528 } else {
5dbf5671 529 err = w1_process_command_root(msg, m, nsp->portid);
610705e7 530 goto out_cont;
12003375
EP
531 }
532
533 if (!dev) {
534 err = -ENODEV;
535 goto out_cont;
536 }
537
9be62e0b
EP
538 err = 0;
539 if (!mlen)
540 goto out_cont;
541
9fcbbac5
DF
542 atomic_inc(&block->refcnt);
543 node->async.cb = w1_process_cb;
544 node->block = block;
545 node->m = (struct w1_netlink_msg *)((u8 *)&block->msg +
546 (size_t)((u8 *)m - (u8 *)msg));
547 node->sl = sl;
548 node->dev = dev;
12003375 549
9fcbbac5
DF
550 mutex_lock(&dev->list_mutex);
551 list_add_tail(&node->async.async_entry, &dev->async_list);
552 wake_up_process(dev->thread);
553 mutex_unlock(&dev->list_mutex);
554 ++node;
4037014e 555
12003375 556out_cont:
9fcbbac5 557 if (err)
5dbf5671 558 w1_netlink_send_error(msg, m, NULL, nsp->portid, err);
9fcbbac5 559 msg_len -= sizeof(struct w1_netlink_msg) + m->len;
12003375
EP
560 m = (struct w1_netlink_msg *)(((u8 *)m) + sizeof(struct w1_netlink_msg) + m->len);
561
562 /*
563 * Let's allow requests for nonexisting devices.
564 */
565 if (err == -ENODEV)
566 err = 0;
567 }
9fcbbac5
DF
568 if (block && atomic_sub_return(1, &block->refcnt) == 0)
569 kfree(block);
2d833179
EP
570}
571
12003375 572int w1_init_netlink(void)
2d833179 573{
12003375
EP
574 struct cb_id w1_id = {.idx = CN_W1_IDX, .val = CN_W1_VAL};
575
576 return cn_add_callback(&w1_id, "w1", &w1_cn_callback);
577}
578
579void w1_fini_netlink(void)
580{
581 struct cb_id w1_id = {.idx = CN_W1_IDX, .val = CN_W1_VAL};
582
583 cn_del_callback(&w1_id);
2d833179 584}
1da177e4 585#else
1da177e4
LT
586void w1_netlink_send(struct w1_master *dev, struct w1_netlink_msg *msg)
587{
588}
2d833179 589
12003375 590int w1_init_netlink(void)
2d833179
EP
591{
592 return 0;
593}
594
12003375 595void w1_fini_netlink(void)
2d833179
EP
596{
597}
1da177e4 598#endif