4 * Copyright (c) 2003 Evgeniy Polyakov <zbr@ioremap.net>
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.
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.
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
22 #include <linux/slab.h>
23 #include <linux/skbuff.h>
24 #include <linux/netlink.h>
25 #include <linux/connector.h>
29 #include "w1_netlink.h"
31 #if defined(CONFIG_W1_CON) && (defined(CONFIG_CONNECTOR) || (defined(CONFIG_CONNECTOR_MODULE) && defined(CONFIG_W1_MODULE)))
32 void w1_netlink_send(struct w1_master *dev, struct w1_netlink_msg *msg)
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);
38 memset(buf, 0, sizeof(buf));
40 m->id.idx = CN_W1_IDX;
41 m->id.val = CN_W1_VAL;
44 m->len = sizeof(struct w1_netlink_msg);
46 memcpy(w, msg, sizeof(struct w1_netlink_msg));
48 cn_netlink_send(m, 0, GFP_KERNEL);
51 static void w1_send_slave(struct w1_master *dev, u64 rn)
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);
59 /* update kernel slave list */
60 w1_slave_found(dev, rn);
62 avail = dev->priv_size - cmd->len;
66 cn_netlink_send(msg, 0, GFP_KERNEL);
68 msg->len = sizeof(struct w1_netlink_msg) +
69 sizeof(struct w1_netlink_cmd);
70 hdr->len = sizeof(struct w1_netlink_cmd);
74 data = (void *)(cmd + 1) + cmd->len;
82 static int w1_process_search_command(struct w1_master *dev, struct cn_msg *msg,
85 struct w1_netlink_msg *hdr = (struct w1_netlink_msg *)(msg + 1);
86 struct w1_netlink_cmd *cmd = (struct w1_netlink_cmd *)(hdr + 1);
87 int search_type = (cmd->cmd == W1_CMD_ALARM_SEARCH)?W1_ALARM_SEARCH:W1_SEARCH;
90 dev->priv_size = avail;
92 w1_search_process_cb(dev, search_type, w1_send_slave);
95 cn_netlink_send(msg, 0, GFP_KERNEL);
103 static int w1_send_read_reply(struct cn_msg *msg, struct w1_netlink_msg *hdr,
104 struct w1_netlink_cmd *cmd)
107 struct w1_netlink_msg *h;
108 struct w1_netlink_cmd *c;
112 data = kzalloc(sizeof(struct cn_msg) +
113 sizeof(struct w1_netlink_msg) +
114 sizeof(struct w1_netlink_cmd) +
115 cmd->len, GFP_KERNEL);
119 cm = (struct cn_msg *)(data);
120 h = (struct w1_netlink_msg *)(cm + 1);
121 c = (struct w1_netlink_cmd *)(h + 1);
123 memcpy(cm, msg, sizeof(struct cn_msg));
124 memcpy(h, hdr, sizeof(struct w1_netlink_msg));
125 memcpy(c, cmd, sizeof(struct w1_netlink_cmd));
127 cm->ack = msg->seq+1;
128 cm->len = sizeof(struct w1_netlink_msg) +
129 sizeof(struct w1_netlink_cmd) + cmd->len;
131 h->len = sizeof(struct w1_netlink_cmd) + cmd->len;
133 memcpy(c->data, cmd->data, c->len);
135 err = cn_netlink_send(cm, 0, GFP_KERNEL);
142 static int w1_process_command_io(struct w1_master *dev, struct cn_msg *msg,
143 struct w1_netlink_msg *hdr, struct w1_netlink_cmd *cmd)
149 w1_touch_block(dev, cmd->data, cmd->len);
150 w1_send_read_reply(msg, hdr, cmd);
153 w1_read_block(dev, cmd->data, cmd->len);
154 w1_send_read_reply(msg, hdr, cmd);
157 w1_write_block(dev, cmd->data, cmd->len);
167 static int w1_process_command_master(struct w1_master *dev, struct cn_msg *req_msg,
168 struct w1_netlink_msg *req_hdr, struct w1_netlink_cmd *req_cmd)
172 struct w1_netlink_msg *hdr;
173 struct w1_netlink_cmd *cmd;
175 msg = kzalloc(PAGE_SIZE, GFP_KERNEL);
179 msg->id = req_msg->id;
180 msg->seq = req_msg->seq;
182 msg->len = sizeof(struct w1_netlink_msg) + sizeof(struct w1_netlink_cmd);
184 hdr = (struct w1_netlink_msg *)(msg + 1);
185 cmd = (struct w1_netlink_cmd *)(hdr + 1);
187 hdr->type = W1_MASTER_CMD;
188 hdr->id = req_hdr->id;
189 hdr->len = sizeof(struct w1_netlink_cmd);
191 cmd->cmd = req_cmd->cmd;
196 case W1_CMD_ALARM_SEARCH:
197 err = w1_process_search_command(dev, msg,
198 PAGE_SIZE - msg->len - sizeof(struct cn_msg));
203 err = w1_process_command_io(dev, req_msg, req_hdr, req_cmd);
206 err = w1_reset_bus(dev);
217 static int w1_process_command_slave(struct w1_slave *sl, struct cn_msg *msg,
218 struct w1_netlink_msg *hdr, struct w1_netlink_cmd *cmd)
220 dev_dbg(&sl->master->dev, "%s: %02x.%012llx.%02x: cmd=%02x, len=%u.\n",
221 __func__, sl->reg_num.family, (unsigned long long)sl->reg_num.id,
222 sl->reg_num.crc, cmd->cmd, cmd->len);
224 return w1_process_command_io(sl->master, msg, hdr, cmd);
227 static int w1_process_command_root(struct cn_msg *msg, struct w1_netlink_msg *mcmd)
231 struct w1_netlink_msg *w;
234 if (mcmd->type != W1_LIST_MASTERS) {
235 printk(KERN_NOTICE "%s: msg: %x.%x, wrong type: %u, len: %u.\n",
236 __func__, msg->id.idx, msg->id.val, mcmd->type, mcmd->len);
240 cn = kmalloc(PAGE_SIZE, GFP_KERNEL);
244 cn->id.idx = CN_W1_IDX;
245 cn->id.val = CN_W1_VAL;
249 cn->len = sizeof(struct w1_netlink_msg);
250 w = (struct w1_netlink_msg *)(cn + 1);
252 w->type = W1_LIST_MASTERS;
257 mutex_lock(&w1_mlock);
258 list_for_each_entry(m, &w1_masters, w1_master_entry) {
259 if (cn->len + sizeof(*id) > PAGE_SIZE - sizeof(struct cn_msg)) {
260 cn_netlink_send(cn, 0, GFP_KERNEL);
262 cn->len = sizeof(struct w1_netlink_msg);
268 w->len += sizeof(*id);
269 cn->len += sizeof(*id);
273 cn_netlink_send(cn, 0, GFP_KERNEL);
274 mutex_unlock(&w1_mlock);
280 static int w1_netlink_send_error(struct cn_msg *rcmsg, struct w1_netlink_msg *rmsg,
281 struct w1_netlink_cmd *rcmd, int error)
284 struct w1_netlink_msg *msg;
285 struct w1_netlink_cmd *cmd;
287 cmsg = kzalloc(sizeof(*msg) + sizeof(*cmd) + sizeof(*cmsg), GFP_KERNEL);
291 msg = (struct w1_netlink_msg *)(cmsg + 1);
292 cmd = (struct w1_netlink_cmd *)(msg + 1);
294 memcpy(cmsg, rcmsg, sizeof(*cmsg));
295 cmsg->len = sizeof(*msg);
297 memcpy(msg, rmsg, sizeof(*msg));
299 msg->status = (short)-error;
302 memcpy(cmd, rcmd, sizeof(*cmd));
304 msg->len += sizeof(*cmd);
305 cmsg->len += sizeof(*cmd);
308 error = cn_netlink_send(cmsg, 0, GFP_KERNEL);
314 static void w1_cn_callback(struct cn_msg *msg, struct netlink_skb_parms *nsp)
316 struct w1_netlink_msg *m = (struct w1_netlink_msg *)(msg + 1);
317 struct w1_netlink_cmd *cmd;
319 struct w1_master *dev;
322 while (msg->len && !err) {
323 struct w1_reg_num id;
325 u8 *cmd_data = m->data;
331 memcpy(&id, m->id.id, sizeof(id));
333 printk("%s: %02x.%012llx.%02x: type=%02x, len=%u.\n",
334 __func__, id.family, (unsigned long long)id.id, id.crc, m->type, m->len);
336 if (m->len + sizeof(struct w1_netlink_msg) > msg->len) {
341 if (m->type == W1_MASTER_CMD) {
342 dev = w1_search_master_id(m->id.mst.id);
343 } else if (m->type == W1_SLAVE_CMD) {
344 sl = w1_search_slave(&id);
348 err = w1_process_command_root(msg, m);
361 mutex_lock(&dev->mutex);
363 if (sl && w1_reset_select_slave(sl)) {
369 cmd = (struct w1_netlink_cmd *)cmd_data;
371 if (cmd->len + sizeof(struct w1_netlink_cmd) > mlen) {
377 err = w1_process_command_slave(sl, msg, m, cmd);
379 err = w1_process_command_master(dev, msg, m, cmd);
381 w1_netlink_send_error(msg, m, cmd, err);
384 cmd_data += cmd->len + sizeof(struct w1_netlink_cmd);
385 mlen -= cmd->len + sizeof(struct w1_netlink_cmd);
388 atomic_dec(&dev->refcnt);
390 atomic_dec(&sl->refcnt);
391 mutex_unlock(&dev->mutex);
394 w1_netlink_send_error(msg, m, cmd, err);
395 msg->len -= sizeof(struct w1_netlink_msg) + m->len;
396 m = (struct w1_netlink_msg *)(((u8 *)m) + sizeof(struct w1_netlink_msg) + m->len);
399 * Let's allow requests for nonexisting devices.
406 int w1_init_netlink(void)
408 struct cb_id w1_id = {.idx = CN_W1_IDX, .val = CN_W1_VAL};
410 return cn_add_callback(&w1_id, "w1", &w1_cn_callback);
413 void w1_fini_netlink(void)
415 struct cb_id w1_id = {.idx = CN_W1_IDX, .val = CN_W1_VAL};
417 cn_del_callback(&w1_id);
420 void w1_netlink_send(struct w1_master *dev, struct w1_netlink_msg *msg)
424 int w1_init_netlink(void)
429 void w1_fini_netlink(void)