blob: 458c4d674a9edffa9ceb82d10afc529c5d0f3c32 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/drivers/net/netconsole.c
3 *
4 * Copyright (C) 2001 Ingo Molnar <mingo@redhat.com>
5 *
6 * This file contains the implementation of an IRQ-safe, crash-safe
7 * kernel console implementation that outputs kernel messages to the
8 * network.
9 *
10 * Modification history:
11 *
12 * 2001-09-17 started by Ingo Molnar.
13 * 2003-08-11 2.6 port by Matt Mackall
14 * simplified options
15 * generic card hooks
16 * works non-modular
17 * 2003-09-07 rewritten with netpoll api
18 */
19
20/****************************************************************
21 * This program is free software; you can redistribute it and/or modify
22 * it under the terms of the GNU General Public License as published by
23 * the Free Software Foundation; either version 2, or (at your option)
24 * any later version.
25 *
26 * This program is distributed in the hope that it will be useful,
27 * but WITHOUT ANY WARRANTY; without even the implied warranty of
28 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
29 * GNU General Public License for more details.
30 *
31 * You should have received a copy of the GNU General Public License
32 * along with this program; if not, write to the Free Software
33 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
34 *
35 ****************************************************************/
36
37#include <linux/mm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include <linux/init.h>
39#include <linux/module.h>
40#include <linux/console.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include <linux/moduleparam.h>
42#include <linux/string.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include <linux/netpoll.h>
44
45MODULE_AUTHOR("Maintainer: Matt Mackall <mpm@selenic.com>");
46MODULE_DESCRIPTION("Console driver for network interfaces");
47MODULE_LICENSE("GPL");
48
Satyam Sharmad39badf2007-08-10 15:27:24 -070049#define MAX_PARAM_LENGTH 256
50#define MAX_PRINT_CHUNK 1000
51
52static char config[MAX_PARAM_LENGTH];
53module_param_string(netconsole, config, MAX_PARAM_LENGTH, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070054MODULE_PARM_DESC(netconsole, " netconsole=[src-port]@[src-ip]/[dev],[tgt-port]@<tgt-ip>/[tgt-macaddr]\n");
55
Satyam Sharmad2b60882007-08-10 15:29:47 -070056#ifndef MODULE
57static int __init option_setup(char *opt)
58{
59 strlcpy(config, opt, MAX_PARAM_LENGTH);
60 return 1;
61}
62__setup("netconsole=", option_setup);
63#endif /* MODULE */
64
Satyam Sharmab5427c22007-08-10 15:33:40 -070065/* Linked list of all configured targets */
66static LIST_HEAD(target_list);
67
68/* This needs to be a spinlock because write_msg() cannot sleep */
69static DEFINE_SPINLOCK(target_list_lock);
70
Satyam Sharmadf180e32007-08-10 15:32:14 -070071/**
72 * struct netconsole_target - Represents a configured netconsole target.
Satyam Sharmab5427c22007-08-10 15:33:40 -070073 * @list: Links this target into the target_list.
Satyam Sharmadf180e32007-08-10 15:32:14 -070074 * @np: The netpoll structure for this target.
75 */
76struct netconsole_target {
Satyam Sharmab5427c22007-08-10 15:33:40 -070077 struct list_head list;
Satyam Sharmadf180e32007-08-10 15:32:14 -070078 struct netpoll np;
79};
80
Satyam Sharmab5427c22007-08-10 15:33:40 -070081/* Allocate new target and setup netpoll for it */
82static struct netconsole_target *alloc_target(char *target_config)
83{
84 int err = -ENOMEM;
85 struct netconsole_target *nt;
86
87 /* Allocate and initialize with defaults */
88 nt = kzalloc(sizeof(*nt), GFP_KERNEL);
89 if (!nt) {
90 printk(KERN_ERR "netconsole: failed to allocate memory\n");
91 goto fail;
92 }
93
94 nt->np.name = "netconsole";
95 strlcpy(nt->np.dev_name, "eth0", IFNAMSIZ);
96 nt->np.local_port = 6665;
97 nt->np.remote_port = 6666;
98 memset(nt->np.remote_mac, 0xff, ETH_ALEN);
99
100 /* Parse parameters and setup netpoll */
101 err = netpoll_parse_options(&nt->np, target_config);
102 if (err)
103 goto fail;
104
105 err = netpoll_setup(&nt->np);
106 if (err)
107 goto fail;
108
109 return nt;
110
111fail:
112 kfree(nt);
113 return ERR_PTR(err);
114}
115
116/* Cleanup netpoll for given target and free it */
117static void free_target(struct netconsole_target *nt)
118{
119 netpoll_cleanup(&nt->np);
120 kfree(nt);
121}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122
Satyam Sharma17951f32007-08-10 15:33:01 -0700123/* Handle network interface device notifications */
124static int netconsole_netdev_event(struct notifier_block *this,
125 unsigned long event,
126 void *ptr)
127{
Satyam Sharmab5427c22007-08-10 15:33:40 -0700128 unsigned long flags;
129 struct netconsole_target *nt;
Satyam Sharma17951f32007-08-10 15:33:01 -0700130 struct net_device *dev = ptr;
Satyam Sharma17951f32007-08-10 15:33:01 -0700131
Satyam Sharmab5427c22007-08-10 15:33:40 -0700132 if (!(event == NETDEV_CHANGEADDR || event == NETDEV_CHANGENAME))
133 goto done;
Satyam Sharma17951f32007-08-10 15:33:01 -0700134
Satyam Sharmab5427c22007-08-10 15:33:40 -0700135 spin_lock_irqsave(&target_list_lock, flags);
136 list_for_each_entry(nt, &target_list, list) {
137 if (nt->np.dev == dev) {
138 switch (event) {
139 case NETDEV_CHANGEADDR:
140 memcpy(nt->np.local_mac, dev->dev_addr, ETH_ALEN);
141 break;
142
143 case NETDEV_CHANGENAME:
144 strlcpy(nt->np.dev_name, dev->name, IFNAMSIZ);
145 break;
146 }
Satyam Sharma17951f32007-08-10 15:33:01 -0700147 }
148 }
Satyam Sharmab5427c22007-08-10 15:33:40 -0700149 spin_unlock_irqrestore(&target_list_lock, flags);
Satyam Sharma17951f32007-08-10 15:33:01 -0700150
Satyam Sharmab5427c22007-08-10 15:33:40 -0700151done:
Satyam Sharma17951f32007-08-10 15:33:01 -0700152 return NOTIFY_DONE;
153}
154
155static struct notifier_block netconsole_netdev_notifier = {
156 .notifier_call = netconsole_netdev_event,
157};
158
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159static void write_msg(struct console *con, const char *msg, unsigned int len)
160{
161 int frag, left;
162 unsigned long flags;
Satyam Sharmab5427c22007-08-10 15:33:40 -0700163 struct netconsole_target *nt;
164 const char *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165
Satyam Sharmab5427c22007-08-10 15:33:40 -0700166 /* Avoid taking lock and disabling interrupts unnecessarily */
167 if (list_empty(&target_list))
168 return;
169
170 spin_lock_irqsave(&target_list_lock, flags);
171 list_for_each_entry(nt, &target_list, list) {
172 if (netif_running(nt->np.dev)) {
173 /*
174 * We nest this inside the for-each-target loop above
175 * so that we're able to get as much logging out to
176 * at least one target if we die inside here, instead
177 * of unnecessarily keeping all targets in lock-step.
178 */
179 tmp = msg;
180 for (left = len; left;) {
181 frag = min(left, MAX_PRINT_CHUNK);
182 netpoll_send_udp(&nt->np, tmp, frag);
183 tmp += frag;
184 left -= frag;
185 }
Satyam Sharma0cc120be2007-08-10 15:30:31 -0700186 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 }
Satyam Sharmab5427c22007-08-10 15:33:40 -0700188 spin_unlock_irqrestore(&target_list_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189}
190
191static struct console netconsole = {
Satyam Sharmad39badf2007-08-10 15:27:24 -0700192 .name = "netcon",
193 .flags = CON_ENABLED | CON_PRINTBUFFER,
194 .write = write_msg,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195};
196
Satyam Sharmad39badf2007-08-10 15:27:24 -0700197static int __init init_netconsole(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198{
Satyam Sharmad39badf2007-08-10 15:27:24 -0700199 int err = 0;
Satyam Sharmab5427c22007-08-10 15:33:40 -0700200 struct netconsole_target *nt, *tmp;
201 unsigned long flags;
202 char *target_config;
203 char *input = config;
Stephen Hemmingerb41848b2006-10-26 15:46:52 -0700204
Satyam Sharmab5427c22007-08-10 15:33:40 -0700205 if (!strnlen(input, MAX_PARAM_LENGTH)) {
Satyam Sharmad39badf2007-08-10 15:27:24 -0700206 printk(KERN_INFO "netconsole: not configured, aborting\n");
207 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 }
209
Satyam Sharmab5427c22007-08-10 15:33:40 -0700210 while ((target_config = strsep(&input, ";"))) {
211 nt = alloc_target(target_config);
212 if (IS_ERR(nt)) {
213 err = PTR_ERR(nt);
214 goto fail;
215 }
216 spin_lock_irqsave(&target_list_lock, flags);
217 list_add(&nt->list, &target_list);
218 spin_unlock_irqrestore(&target_list_lock, flags);
219 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220
Satyam Sharma17951f32007-08-10 15:33:01 -0700221 err = register_netdevice_notifier(&netconsole_netdev_notifier);
222 if (err)
Satyam Sharmab5427c22007-08-10 15:33:40 -0700223 goto fail;
Satyam Sharma17951f32007-08-10 15:33:01 -0700224
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 register_console(&netconsole);
226 printk(KERN_INFO "netconsole: network logging started\n");
Satyam Sharmad39badf2007-08-10 15:27:24 -0700227
228out:
229 return err;
Satyam Sharmab5427c22007-08-10 15:33:40 -0700230
231fail:
232 printk(KERN_ERR "netconsole: cleaning up\n");
233
234 /*
235 * Remove all targets and destroy them. Skipping the list
236 * lock is safe here, and netpoll_cleanup() will sleep.
237 */
238 list_for_each_entry_safe(nt, tmp, &target_list, list) {
239 list_del(&nt->list);
240 free_target(nt);
241 }
242
243 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244}
245
Satyam Sharmad39badf2007-08-10 15:27:24 -0700246static void __exit cleanup_netconsole(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247{
Satyam Sharmab5427c22007-08-10 15:33:40 -0700248 struct netconsole_target *nt, *tmp;
Satyam Sharmadf180e32007-08-10 15:32:14 -0700249
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 unregister_console(&netconsole);
Satyam Sharma17951f32007-08-10 15:33:01 -0700251 unregister_netdevice_notifier(&netconsole_netdev_notifier);
Satyam Sharmab5427c22007-08-10 15:33:40 -0700252
253 /*
254 * Remove all targets and destroy them. Skipping the list
255 * lock is safe here, and netpoll_cleanup() will sleep.
256 */
257 list_for_each_entry_safe(nt, tmp, &target_list, list) {
258 list_del(&nt->list);
259 free_target(nt);
260 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261}
262
263module_init(init_netconsole);
264module_exit(cleanup_netconsole);