Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 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 | |
Joe Perches | 22ded57 | 2013-10-28 12:53:21 -0700 | [diff] [blame] | 37 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
| 38 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | #include <linux/mm.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | #include <linux/init.h> |
| 41 | #include <linux/module.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 42 | #include <linux/slab.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | #include <linux/console.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | #include <linux/moduleparam.h> |
Andy Shevchenko | 4cd5773 | 2013-06-04 19:46:26 +0300 | [diff] [blame] | 45 | #include <linux/kernel.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | #include <linux/string.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | #include <linux/netpoll.h> |
Satyam Sharma | 0bcc181 | 2007-08-10 15:35:05 -0700 | [diff] [blame] | 48 | #include <linux/inet.h> |
| 49 | #include <linux/configfs.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 | |
| 51 | MODULE_AUTHOR("Maintainer: Matt Mackall <mpm@selenic.com>"); |
| 52 | MODULE_DESCRIPTION("Console driver for network interfaces"); |
| 53 | MODULE_LICENSE("GPL"); |
| 54 | |
Satyam Sharma | d39badf | 2007-08-10 15:27:24 -0700 | [diff] [blame] | 55 | #define MAX_PARAM_LENGTH 256 |
| 56 | #define MAX_PRINT_CHUNK 1000 |
| 57 | |
| 58 | static char config[MAX_PARAM_LENGTH]; |
| 59 | module_param_string(netconsole, config, MAX_PARAM_LENGTH, 0); |
Niels de Vos | 61a2d07 | 2008-07-31 00:07:23 -0700 | [diff] [blame] | 60 | MODULE_PARM_DESC(netconsole, " netconsole=[src-port]@[src-ip]/[dev],[tgt-port]@<tgt-ip>/[tgt-macaddr]"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | |
Amerigo Wang | c1a6085 | 2012-11-08 03:42:38 +0000 | [diff] [blame] | 62 | static bool oops_only = false; |
| 63 | module_param(oops_only, bool, 0600); |
| 64 | MODULE_PARM_DESC(oops_only, "Only log oops messages"); |
| 65 | |
Satyam Sharma | d2b6088 | 2007-08-10 15:29:47 -0700 | [diff] [blame] | 66 | #ifndef MODULE |
| 67 | static int __init option_setup(char *opt) |
| 68 | { |
| 69 | strlcpy(config, opt, MAX_PARAM_LENGTH); |
| 70 | return 1; |
| 71 | } |
| 72 | __setup("netconsole=", option_setup); |
| 73 | #endif /* MODULE */ |
| 74 | |
Satyam Sharma | b5427c2 | 2007-08-10 15:33:40 -0700 | [diff] [blame] | 75 | /* Linked list of all configured targets */ |
| 76 | static LIST_HEAD(target_list); |
| 77 | |
| 78 | /* This needs to be a spinlock because write_msg() cannot sleep */ |
| 79 | static DEFINE_SPINLOCK(target_list_lock); |
| 80 | |
Satyam Sharma | df180e3 | 2007-08-10 15:32:14 -0700 | [diff] [blame] | 81 | /** |
| 82 | * struct netconsole_target - Represents a configured netconsole target. |
Satyam Sharma | b5427c2 | 2007-08-10 15:33:40 -0700 | [diff] [blame] | 83 | * @list: Links this target into the target_list. |
Satyam Sharma | 0bcc181 | 2007-08-10 15:35:05 -0700 | [diff] [blame] | 84 | * @item: Links us into the configfs subsystem hierarchy. |
| 85 | * @enabled: On / off knob to enable / disable target. |
| 86 | * Visible from userspace (read-write). |
| 87 | * We maintain a strict 1:1 correspondence between this and |
| 88 | * whether the corresponding netpoll is active or inactive. |
| 89 | * Also, other parameters of a target may be modified at |
| 90 | * runtime only when it is disabled (enabled == 0). |
Satyam Sharma | df180e3 | 2007-08-10 15:32:14 -0700 | [diff] [blame] | 91 | * @np: The netpoll structure for this target. |
Satyam Sharma | 0bcc181 | 2007-08-10 15:35:05 -0700 | [diff] [blame] | 92 | * Contains the other userspace visible parameters: |
| 93 | * dev_name (read-write) |
| 94 | * local_port (read-write) |
| 95 | * remote_port (read-write) |
| 96 | * local_ip (read-write) |
| 97 | * remote_ip (read-write) |
| 98 | * local_mac (read-only) |
| 99 | * remote_mac (read-write) |
Satyam Sharma | df180e3 | 2007-08-10 15:32:14 -0700 | [diff] [blame] | 100 | */ |
| 101 | struct netconsole_target { |
Satyam Sharma | b5427c2 | 2007-08-10 15:33:40 -0700 | [diff] [blame] | 102 | struct list_head list; |
Satyam Sharma | 0bcc181 | 2007-08-10 15:35:05 -0700 | [diff] [blame] | 103 | #ifdef CONFIG_NETCONSOLE_DYNAMIC |
| 104 | struct config_item item; |
| 105 | #endif |
| 106 | int enabled; |
Dan Aloni | 7a163bf | 2013-08-30 13:59:46 +0300 | [diff] [blame] | 107 | struct mutex mutex; |
Satyam Sharma | df180e3 | 2007-08-10 15:32:14 -0700 | [diff] [blame] | 108 | struct netpoll np; |
| 109 | }; |
| 110 | |
Satyam Sharma | 0bcc181 | 2007-08-10 15:35:05 -0700 | [diff] [blame] | 111 | #ifdef CONFIG_NETCONSOLE_DYNAMIC |
| 112 | |
| 113 | static struct configfs_subsystem netconsole_subsys; |
| 114 | |
| 115 | static int __init dynamic_netconsole_init(void) |
| 116 | { |
| 117 | config_group_init(&netconsole_subsys.su_group); |
| 118 | mutex_init(&netconsole_subsys.su_mutex); |
| 119 | return configfs_register_subsystem(&netconsole_subsys); |
| 120 | } |
| 121 | |
| 122 | static void __exit dynamic_netconsole_exit(void) |
| 123 | { |
| 124 | configfs_unregister_subsystem(&netconsole_subsys); |
| 125 | } |
| 126 | |
| 127 | /* |
| 128 | * Targets that were created by parsing the boot/module option string |
| 129 | * do not exist in the configfs hierarchy (and have NULL names) and will |
| 130 | * never go away, so make these a no-op for them. |
| 131 | */ |
| 132 | static void netconsole_target_get(struct netconsole_target *nt) |
| 133 | { |
| 134 | if (config_item_name(&nt->item)) |
| 135 | config_item_get(&nt->item); |
| 136 | } |
| 137 | |
| 138 | static void netconsole_target_put(struct netconsole_target *nt) |
| 139 | { |
| 140 | if (config_item_name(&nt->item)) |
| 141 | config_item_put(&nt->item); |
| 142 | } |
| 143 | |
| 144 | #else /* !CONFIG_NETCONSOLE_DYNAMIC */ |
| 145 | |
| 146 | static int __init dynamic_netconsole_init(void) |
| 147 | { |
| 148 | return 0; |
| 149 | } |
| 150 | |
| 151 | static void __exit dynamic_netconsole_exit(void) |
| 152 | { |
| 153 | } |
| 154 | |
| 155 | /* |
| 156 | * No danger of targets going away from under us when dynamic |
| 157 | * reconfigurability is off. |
| 158 | */ |
| 159 | static void netconsole_target_get(struct netconsole_target *nt) |
| 160 | { |
| 161 | } |
| 162 | |
| 163 | static void netconsole_target_put(struct netconsole_target *nt) |
| 164 | { |
| 165 | } |
| 166 | |
| 167 | #endif /* CONFIG_NETCONSOLE_DYNAMIC */ |
| 168 | |
| 169 | /* Allocate new target (from boot/module param) and setup netpoll for it */ |
| 170 | static struct netconsole_target *alloc_param_target(char *target_config) |
Satyam Sharma | b5427c2 | 2007-08-10 15:33:40 -0700 | [diff] [blame] | 171 | { |
| 172 | int err = -ENOMEM; |
| 173 | struct netconsole_target *nt; |
| 174 | |
Satyam Sharma | 0bcc181 | 2007-08-10 15:35:05 -0700 | [diff] [blame] | 175 | /* |
| 176 | * Allocate and initialize with defaults. |
| 177 | * Note that these targets get their config_item fields zeroed-out. |
| 178 | */ |
Satyam Sharma | b5427c2 | 2007-08-10 15:33:40 -0700 | [diff] [blame] | 179 | nt = kzalloc(sizeof(*nt), GFP_KERNEL); |
Joe Perches | e404dec | 2012-01-29 12:56:23 +0000 | [diff] [blame] | 180 | if (!nt) |
Satyam Sharma | b5427c2 | 2007-08-10 15:33:40 -0700 | [diff] [blame] | 181 | goto fail; |
Satyam Sharma | b5427c2 | 2007-08-10 15:33:40 -0700 | [diff] [blame] | 182 | |
| 183 | nt->np.name = "netconsole"; |
| 184 | strlcpy(nt->np.dev_name, "eth0", IFNAMSIZ); |
| 185 | nt->np.local_port = 6665; |
| 186 | nt->np.remote_port = 6666; |
Dan Aloni | 7a163bf | 2013-08-30 13:59:46 +0300 | [diff] [blame] | 187 | mutex_init(&nt->mutex); |
Satyam Sharma | b5427c2 | 2007-08-10 15:33:40 -0700 | [diff] [blame] | 188 | memset(nt->np.remote_mac, 0xff, ETH_ALEN); |
| 189 | |
| 190 | /* Parse parameters and setup netpoll */ |
| 191 | err = netpoll_parse_options(&nt->np, target_config); |
| 192 | if (err) |
| 193 | goto fail; |
| 194 | |
| 195 | err = netpoll_setup(&nt->np); |
| 196 | if (err) |
| 197 | goto fail; |
| 198 | |
Satyam Sharma | 0bcc181 | 2007-08-10 15:35:05 -0700 | [diff] [blame] | 199 | nt->enabled = 1; |
| 200 | |
Satyam Sharma | b5427c2 | 2007-08-10 15:33:40 -0700 | [diff] [blame] | 201 | return nt; |
| 202 | |
| 203 | fail: |
| 204 | kfree(nt); |
| 205 | return ERR_PTR(err); |
| 206 | } |
| 207 | |
Satyam Sharma | 0bcc181 | 2007-08-10 15:35:05 -0700 | [diff] [blame] | 208 | /* Cleanup netpoll for given target (from boot/module param) and free it */ |
| 209 | static void free_param_target(struct netconsole_target *nt) |
Satyam Sharma | b5427c2 | 2007-08-10 15:33:40 -0700 | [diff] [blame] | 210 | { |
| 211 | netpoll_cleanup(&nt->np); |
| 212 | kfree(nt); |
| 213 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 214 | |
Satyam Sharma | 0bcc181 | 2007-08-10 15:35:05 -0700 | [diff] [blame] | 215 | #ifdef CONFIG_NETCONSOLE_DYNAMIC |
| 216 | |
| 217 | /* |
| 218 | * Our subsystem hierarchy is: |
| 219 | * |
| 220 | * /sys/kernel/config/netconsole/ |
| 221 | * | |
| 222 | * <target>/ |
| 223 | * | enabled |
| 224 | * | dev_name |
| 225 | * | local_port |
| 226 | * | remote_port |
| 227 | * | local_ip |
| 228 | * | remote_ip |
| 229 | * | local_mac |
| 230 | * | remote_mac |
| 231 | * | |
| 232 | * <target>/... |
| 233 | */ |
| 234 | |
| 235 | struct netconsole_target_attr { |
| 236 | struct configfs_attribute attr; |
| 237 | ssize_t (*show)(struct netconsole_target *nt, |
| 238 | char *buf); |
| 239 | ssize_t (*store)(struct netconsole_target *nt, |
| 240 | const char *buf, |
| 241 | size_t count); |
| 242 | }; |
| 243 | |
| 244 | static struct netconsole_target *to_target(struct config_item *item) |
| 245 | { |
| 246 | return item ? |
| 247 | container_of(item, struct netconsole_target, item) : |
| 248 | NULL; |
| 249 | } |
| 250 | |
| 251 | /* |
Satyam Sharma | 0bcc181 | 2007-08-10 15:35:05 -0700 | [diff] [blame] | 252 | * Attribute operations for netconsole_target. |
| 253 | */ |
| 254 | |
| 255 | static ssize_t show_enabled(struct netconsole_target *nt, char *buf) |
| 256 | { |
| 257 | return snprintf(buf, PAGE_SIZE, "%d\n", nt->enabled); |
| 258 | } |
| 259 | |
| 260 | static ssize_t show_dev_name(struct netconsole_target *nt, char *buf) |
| 261 | { |
| 262 | return snprintf(buf, PAGE_SIZE, "%s\n", nt->np.dev_name); |
| 263 | } |
| 264 | |
| 265 | static ssize_t show_local_port(struct netconsole_target *nt, char *buf) |
| 266 | { |
| 267 | return snprintf(buf, PAGE_SIZE, "%d\n", nt->np.local_port); |
| 268 | } |
| 269 | |
| 270 | static ssize_t show_remote_port(struct netconsole_target *nt, char *buf) |
| 271 | { |
| 272 | return snprintf(buf, PAGE_SIZE, "%d\n", nt->np.remote_port); |
| 273 | } |
| 274 | |
| 275 | static ssize_t show_local_ip(struct netconsole_target *nt, char *buf) |
| 276 | { |
Cong Wang | b3d936f | 2013-01-07 20:52:41 +0000 | [diff] [blame] | 277 | if (nt->np.ipv6) |
| 278 | return snprintf(buf, PAGE_SIZE, "%pI6c\n", &nt->np.local_ip.in6); |
| 279 | else |
Cong Wang | b7394d2 | 2013-01-07 20:52:39 +0000 | [diff] [blame] | 280 | return snprintf(buf, PAGE_SIZE, "%pI4\n", &nt->np.local_ip); |
Satyam Sharma | 0bcc181 | 2007-08-10 15:35:05 -0700 | [diff] [blame] | 281 | } |
| 282 | |
| 283 | static ssize_t show_remote_ip(struct netconsole_target *nt, char *buf) |
| 284 | { |
Cong Wang | b3d936f | 2013-01-07 20:52:41 +0000 | [diff] [blame] | 285 | if (nt->np.ipv6) |
| 286 | return snprintf(buf, PAGE_SIZE, "%pI6c\n", &nt->np.remote_ip.in6); |
| 287 | else |
Cong Wang | b7394d2 | 2013-01-07 20:52:39 +0000 | [diff] [blame] | 288 | return snprintf(buf, PAGE_SIZE, "%pI4\n", &nt->np.remote_ip); |
Satyam Sharma | 0bcc181 | 2007-08-10 15:35:05 -0700 | [diff] [blame] | 289 | } |
| 290 | |
| 291 | static ssize_t show_local_mac(struct netconsole_target *nt, char *buf) |
| 292 | { |
Stephen Hemminger | 0953864 | 2007-11-19 19:23:29 -0800 | [diff] [blame] | 293 | struct net_device *dev = nt->np.dev; |
Johannes Berg | e174961 | 2008-10-27 15:59:26 -0700 | [diff] [blame] | 294 | static const u8 bcast[ETH_ALEN] = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff }; |
Stephen Hemminger | 0953864 | 2007-11-19 19:23:29 -0800 | [diff] [blame] | 295 | |
Johannes Berg | e174961 | 2008-10-27 15:59:26 -0700 | [diff] [blame] | 296 | return snprintf(buf, PAGE_SIZE, "%pM\n", dev ? dev->dev_addr : bcast); |
Satyam Sharma | 0bcc181 | 2007-08-10 15:35:05 -0700 | [diff] [blame] | 297 | } |
| 298 | |
| 299 | static ssize_t show_remote_mac(struct netconsole_target *nt, char *buf) |
| 300 | { |
Johannes Berg | e174961 | 2008-10-27 15:59:26 -0700 | [diff] [blame] | 301 | return snprintf(buf, PAGE_SIZE, "%pM\n", nt->np.remote_mac); |
Satyam Sharma | 0bcc181 | 2007-08-10 15:35:05 -0700 | [diff] [blame] | 302 | } |
| 303 | |
| 304 | /* |
| 305 | * This one is special -- targets created through the configfs interface |
| 306 | * are not enabled (and the corresponding netpoll activated) by default. |
| 307 | * The user is expected to set the desired parameters first (which |
| 308 | * would enable him to dynamically add new netpoll targets for new |
| 309 | * network interfaces as and when they come up). |
| 310 | */ |
| 311 | static ssize_t store_enabled(struct netconsole_target *nt, |
| 312 | const char *buf, |
| 313 | size_t count) |
| 314 | { |
Alexey Dobriyan | 99f823f | 2011-05-07 20:33:13 +0000 | [diff] [blame] | 315 | int enabled; |
Satyam Sharma | 0bcc181 | 2007-08-10 15:35:05 -0700 | [diff] [blame] | 316 | int err; |
Satyam Sharma | 0bcc181 | 2007-08-10 15:35:05 -0700 | [diff] [blame] | 317 | |
Alexey Dobriyan | 99f823f | 2011-05-07 20:33:13 +0000 | [diff] [blame] | 318 | err = kstrtoint(buf, 10, &enabled); |
| 319 | if (err < 0) |
| 320 | return err; |
| 321 | if (enabled < 0 || enabled > 1) |
| 322 | return -EINVAL; |
Gao feng | d512348 | 2011-10-11 16:08:11 +0000 | [diff] [blame] | 323 | if (enabled == nt->enabled) { |
Joe Perches | 22ded57 | 2013-10-28 12:53:21 -0700 | [diff] [blame] | 324 | pr_info("network logging has already %s\n", |
| 325 | nt->enabled ? "started" : "stopped"); |
Gao feng | d512348 | 2011-10-11 16:08:11 +0000 | [diff] [blame] | 326 | return -EINVAL; |
| 327 | } |
Satyam Sharma | 0bcc181 | 2007-08-10 15:35:05 -0700 | [diff] [blame] | 328 | |
Dan Aloni | 7a163bf | 2013-08-30 13:59:46 +0300 | [diff] [blame] | 329 | mutex_lock(&nt->mutex); |
Satyam Sharma | 0bcc181 | 2007-08-10 15:35:05 -0700 | [diff] [blame] | 330 | if (enabled) { /* 1 */ |
| 331 | |
| 332 | /* |
| 333 | * Skip netpoll_parse_options() -- all the attributes are |
| 334 | * already configured via configfs. Just print them out. |
| 335 | */ |
| 336 | netpoll_print_options(&nt->np); |
| 337 | |
| 338 | err = netpoll_setup(&nt->np); |
Dan Aloni | 7a163bf | 2013-08-30 13:59:46 +0300 | [diff] [blame] | 339 | if (err) { |
| 340 | mutex_unlock(&nt->mutex); |
Satyam Sharma | 0bcc181 | 2007-08-10 15:35:05 -0700 | [diff] [blame] | 341 | return err; |
Dan Aloni | 7a163bf | 2013-08-30 13:59:46 +0300 | [diff] [blame] | 342 | } |
Satyam Sharma | 0bcc181 | 2007-08-10 15:35:05 -0700 | [diff] [blame] | 343 | |
Joe Perches | 22ded57 | 2013-10-28 12:53:21 -0700 | [diff] [blame] | 344 | pr_info("network logging started\n"); |
Satyam Sharma | 0bcc181 | 2007-08-10 15:35:05 -0700 | [diff] [blame] | 345 | |
| 346 | } else { /* 0 */ |
| 347 | netpoll_cleanup(&nt->np); |
| 348 | } |
| 349 | |
| 350 | nt->enabled = enabled; |
Dan Aloni | 7a163bf | 2013-08-30 13:59:46 +0300 | [diff] [blame] | 351 | mutex_unlock(&nt->mutex); |
Satyam Sharma | 0bcc181 | 2007-08-10 15:35:05 -0700 | [diff] [blame] | 352 | |
| 353 | return strnlen(buf, count); |
| 354 | } |
| 355 | |
| 356 | static ssize_t store_dev_name(struct netconsole_target *nt, |
| 357 | const char *buf, |
| 358 | size_t count) |
| 359 | { |
| 360 | size_t len; |
| 361 | |
| 362 | if (nt->enabled) { |
Joe Perches | 22ded57 | 2013-10-28 12:53:21 -0700 | [diff] [blame] | 363 | pr_err("target (%s) is enabled, disable to update parameters\n", |
| 364 | config_item_name(&nt->item)); |
Satyam Sharma | 0bcc181 | 2007-08-10 15:35:05 -0700 | [diff] [blame] | 365 | return -EINVAL; |
| 366 | } |
| 367 | |
| 368 | strlcpy(nt->np.dev_name, buf, IFNAMSIZ); |
| 369 | |
| 370 | /* Get rid of possible trailing newline from echo(1) */ |
| 371 | len = strnlen(nt->np.dev_name, IFNAMSIZ); |
| 372 | if (nt->np.dev_name[len - 1] == '\n') |
| 373 | nt->np.dev_name[len - 1] = '\0'; |
| 374 | |
| 375 | return strnlen(buf, count); |
| 376 | } |
| 377 | |
| 378 | static ssize_t store_local_port(struct netconsole_target *nt, |
| 379 | const char *buf, |
| 380 | size_t count) |
| 381 | { |
Alexey Dobriyan | 99f823f | 2011-05-07 20:33:13 +0000 | [diff] [blame] | 382 | int rv; |
Satyam Sharma | 0bcc181 | 2007-08-10 15:35:05 -0700 | [diff] [blame] | 383 | |
| 384 | if (nt->enabled) { |
Joe Perches | 22ded57 | 2013-10-28 12:53:21 -0700 | [diff] [blame] | 385 | pr_err("target (%s) is enabled, disable to update parameters\n", |
| 386 | config_item_name(&nt->item)); |
Satyam Sharma | 0bcc181 | 2007-08-10 15:35:05 -0700 | [diff] [blame] | 387 | return -EINVAL; |
| 388 | } |
| 389 | |
Alexey Dobriyan | 99f823f | 2011-05-07 20:33:13 +0000 | [diff] [blame] | 390 | rv = kstrtou16(buf, 10, &nt->np.local_port); |
| 391 | if (rv < 0) |
| 392 | return rv; |
Satyam Sharma | 0bcc181 | 2007-08-10 15:35:05 -0700 | [diff] [blame] | 393 | return strnlen(buf, count); |
| 394 | } |
| 395 | |
| 396 | static ssize_t store_remote_port(struct netconsole_target *nt, |
| 397 | const char *buf, |
| 398 | size_t count) |
| 399 | { |
Alexey Dobriyan | 99f823f | 2011-05-07 20:33:13 +0000 | [diff] [blame] | 400 | int rv; |
Satyam Sharma | 0bcc181 | 2007-08-10 15:35:05 -0700 | [diff] [blame] | 401 | |
| 402 | if (nt->enabled) { |
Joe Perches | 22ded57 | 2013-10-28 12:53:21 -0700 | [diff] [blame] | 403 | pr_err("target (%s) is enabled, disable to update parameters\n", |
| 404 | config_item_name(&nt->item)); |
Satyam Sharma | 0bcc181 | 2007-08-10 15:35:05 -0700 | [diff] [blame] | 405 | return -EINVAL; |
| 406 | } |
| 407 | |
Alexey Dobriyan | 99f823f | 2011-05-07 20:33:13 +0000 | [diff] [blame] | 408 | rv = kstrtou16(buf, 10, &nt->np.remote_port); |
| 409 | if (rv < 0) |
| 410 | return rv; |
Satyam Sharma | 0bcc181 | 2007-08-10 15:35:05 -0700 | [diff] [blame] | 411 | return strnlen(buf, count); |
| 412 | } |
| 413 | |
| 414 | static ssize_t store_local_ip(struct netconsole_target *nt, |
| 415 | const char *buf, |
| 416 | size_t count) |
| 417 | { |
| 418 | if (nt->enabled) { |
Joe Perches | 22ded57 | 2013-10-28 12:53:21 -0700 | [diff] [blame] | 419 | pr_err("target (%s) is enabled, disable to update parameters\n", |
| 420 | config_item_name(&nt->item)); |
Satyam Sharma | 0bcc181 | 2007-08-10 15:35:05 -0700 | [diff] [blame] | 421 | return -EINVAL; |
| 422 | } |
| 423 | |
Cong Wang | b3d936f | 2013-01-07 20:52:41 +0000 | [diff] [blame] | 424 | if (strnchr(buf, count, ':')) { |
| 425 | const char *end; |
| 426 | if (in6_pton(buf, count, nt->np.local_ip.in6.s6_addr, -1, &end) > 0) { |
| 427 | if (*end && *end != '\n') { |
Joe Perches | 22ded57 | 2013-10-28 12:53:21 -0700 | [diff] [blame] | 428 | pr_err("invalid IPv6 address at: <%c>\n", *end); |
Cong Wang | b3d936f | 2013-01-07 20:52:41 +0000 | [diff] [blame] | 429 | return -EINVAL; |
| 430 | } |
| 431 | nt->np.ipv6 = true; |
| 432 | } else |
| 433 | return -EINVAL; |
| 434 | } else { |
| 435 | if (!nt->np.ipv6) { |
| 436 | nt->np.local_ip.ip = in_aton(buf); |
| 437 | } else |
| 438 | return -EINVAL; |
| 439 | } |
Satyam Sharma | 0bcc181 | 2007-08-10 15:35:05 -0700 | [diff] [blame] | 440 | |
| 441 | return strnlen(buf, count); |
| 442 | } |
| 443 | |
| 444 | static ssize_t store_remote_ip(struct netconsole_target *nt, |
| 445 | const char *buf, |
| 446 | size_t count) |
| 447 | { |
| 448 | if (nt->enabled) { |
Joe Perches | 22ded57 | 2013-10-28 12:53:21 -0700 | [diff] [blame] | 449 | pr_err("target (%s) is enabled, disable to update parameters\n", |
| 450 | config_item_name(&nt->item)); |
Satyam Sharma | 0bcc181 | 2007-08-10 15:35:05 -0700 | [diff] [blame] | 451 | return -EINVAL; |
| 452 | } |
| 453 | |
Cong Wang | b3d936f | 2013-01-07 20:52:41 +0000 | [diff] [blame] | 454 | if (strnchr(buf, count, ':')) { |
| 455 | const char *end; |
| 456 | if (in6_pton(buf, count, nt->np.remote_ip.in6.s6_addr, -1, &end) > 0) { |
| 457 | if (*end && *end != '\n') { |
Joe Perches | 22ded57 | 2013-10-28 12:53:21 -0700 | [diff] [blame] | 458 | pr_err("invalid IPv6 address at: <%c>\n", *end); |
Cong Wang | b3d936f | 2013-01-07 20:52:41 +0000 | [diff] [blame] | 459 | return -EINVAL; |
| 460 | } |
| 461 | nt->np.ipv6 = true; |
| 462 | } else |
| 463 | return -EINVAL; |
| 464 | } else { |
| 465 | if (!nt->np.ipv6) { |
| 466 | nt->np.remote_ip.ip = in_aton(buf); |
| 467 | } else |
| 468 | return -EINVAL; |
| 469 | } |
Satyam Sharma | 0bcc181 | 2007-08-10 15:35:05 -0700 | [diff] [blame] | 470 | |
| 471 | return strnlen(buf, count); |
| 472 | } |
| 473 | |
| 474 | static ssize_t store_remote_mac(struct netconsole_target *nt, |
| 475 | const char *buf, |
| 476 | size_t count) |
| 477 | { |
| 478 | u8 remote_mac[ETH_ALEN]; |
Satyam Sharma | 0bcc181 | 2007-08-10 15:35:05 -0700 | [diff] [blame] | 479 | |
| 480 | if (nt->enabled) { |
Joe Perches | 22ded57 | 2013-10-28 12:53:21 -0700 | [diff] [blame] | 481 | pr_err("target (%s) is enabled, disable to update parameters\n", |
| 482 | config_item_name(&nt->item)); |
Satyam Sharma | 0bcc181 | 2007-08-10 15:35:05 -0700 | [diff] [blame] | 483 | return -EINVAL; |
| 484 | } |
| 485 | |
Alexey Dobriyan | 4940fc8 | 2011-05-07 23:00:07 +0000 | [diff] [blame] | 486 | if (!mac_pton(buf, remote_mac)) |
| 487 | return -EINVAL; |
| 488 | if (buf[3 * ETH_ALEN - 1] && buf[3 * ETH_ALEN - 1] != '\n') |
| 489 | return -EINVAL; |
Satyam Sharma | 0bcc181 | 2007-08-10 15:35:05 -0700 | [diff] [blame] | 490 | memcpy(nt->np.remote_mac, remote_mac, ETH_ALEN); |
| 491 | |
| 492 | return strnlen(buf, count); |
Satyam Sharma | 0bcc181 | 2007-08-10 15:35:05 -0700 | [diff] [blame] | 493 | } |
| 494 | |
| 495 | /* |
| 496 | * Attribute definitions for netconsole_target. |
| 497 | */ |
| 498 | |
| 499 | #define NETCONSOLE_TARGET_ATTR_RO(_name) \ |
| 500 | static struct netconsole_target_attr netconsole_target_##_name = \ |
| 501 | __CONFIGFS_ATTR(_name, S_IRUGO, show_##_name, NULL) |
| 502 | |
| 503 | #define NETCONSOLE_TARGET_ATTR_RW(_name) \ |
| 504 | static struct netconsole_target_attr netconsole_target_##_name = \ |
| 505 | __CONFIGFS_ATTR(_name, S_IRUGO | S_IWUSR, show_##_name, store_##_name) |
| 506 | |
| 507 | NETCONSOLE_TARGET_ATTR_RW(enabled); |
| 508 | NETCONSOLE_TARGET_ATTR_RW(dev_name); |
| 509 | NETCONSOLE_TARGET_ATTR_RW(local_port); |
| 510 | NETCONSOLE_TARGET_ATTR_RW(remote_port); |
| 511 | NETCONSOLE_TARGET_ATTR_RW(local_ip); |
| 512 | NETCONSOLE_TARGET_ATTR_RW(remote_ip); |
| 513 | NETCONSOLE_TARGET_ATTR_RO(local_mac); |
| 514 | NETCONSOLE_TARGET_ATTR_RW(remote_mac); |
| 515 | |
| 516 | static struct configfs_attribute *netconsole_target_attrs[] = { |
| 517 | &netconsole_target_enabled.attr, |
| 518 | &netconsole_target_dev_name.attr, |
| 519 | &netconsole_target_local_port.attr, |
| 520 | &netconsole_target_remote_port.attr, |
| 521 | &netconsole_target_local_ip.attr, |
| 522 | &netconsole_target_remote_ip.attr, |
| 523 | &netconsole_target_local_mac.attr, |
| 524 | &netconsole_target_remote_mac.attr, |
| 525 | NULL, |
| 526 | }; |
| 527 | |
| 528 | /* |
| 529 | * Item operations and type for netconsole_target. |
| 530 | */ |
| 531 | |
| 532 | static void netconsole_target_release(struct config_item *item) |
| 533 | { |
| 534 | kfree(to_target(item)); |
| 535 | } |
| 536 | |
| 537 | static ssize_t netconsole_target_attr_show(struct config_item *item, |
| 538 | struct configfs_attribute *attr, |
| 539 | char *buf) |
| 540 | { |
| 541 | ssize_t ret = -EINVAL; |
| 542 | struct netconsole_target *nt = to_target(item); |
| 543 | struct netconsole_target_attr *na = |
| 544 | container_of(attr, struct netconsole_target_attr, attr); |
| 545 | |
| 546 | if (na->show) |
| 547 | ret = na->show(nt, buf); |
| 548 | |
| 549 | return ret; |
| 550 | } |
| 551 | |
| 552 | static ssize_t netconsole_target_attr_store(struct config_item *item, |
| 553 | struct configfs_attribute *attr, |
| 554 | const char *buf, |
| 555 | size_t count) |
| 556 | { |
| 557 | ssize_t ret = -EINVAL; |
| 558 | struct netconsole_target *nt = to_target(item); |
| 559 | struct netconsole_target_attr *na = |
| 560 | container_of(attr, struct netconsole_target_attr, attr); |
| 561 | |
| 562 | if (na->store) |
| 563 | ret = na->store(nt, buf, count); |
| 564 | |
| 565 | return ret; |
| 566 | } |
| 567 | |
| 568 | static struct configfs_item_operations netconsole_target_item_ops = { |
| 569 | .release = netconsole_target_release, |
| 570 | .show_attribute = netconsole_target_attr_show, |
| 571 | .store_attribute = netconsole_target_attr_store, |
| 572 | }; |
| 573 | |
| 574 | static struct config_item_type netconsole_target_type = { |
| 575 | .ct_attrs = netconsole_target_attrs, |
| 576 | .ct_item_ops = &netconsole_target_item_ops, |
| 577 | .ct_owner = THIS_MODULE, |
| 578 | }; |
| 579 | |
| 580 | /* |
| 581 | * Group operations and type for netconsole_subsys. |
| 582 | */ |
| 583 | |
Joel Becker | f89ab86 | 2008-07-17 14:53:48 -0700 | [diff] [blame] | 584 | static struct config_item *make_netconsole_target(struct config_group *group, |
| 585 | const char *name) |
Satyam Sharma | 0bcc181 | 2007-08-10 15:35:05 -0700 | [diff] [blame] | 586 | { |
| 587 | unsigned long flags; |
| 588 | struct netconsole_target *nt; |
| 589 | |
| 590 | /* |
| 591 | * Allocate and initialize with defaults. |
| 592 | * Target is disabled at creation (enabled == 0). |
| 593 | */ |
| 594 | nt = kzalloc(sizeof(*nt), GFP_KERNEL); |
Joe Perches | e404dec | 2012-01-29 12:56:23 +0000 | [diff] [blame] | 595 | if (!nt) |
Joel Becker | a6795e9 | 2008-07-17 15:21:29 -0700 | [diff] [blame] | 596 | return ERR_PTR(-ENOMEM); |
Satyam Sharma | 0bcc181 | 2007-08-10 15:35:05 -0700 | [diff] [blame] | 597 | |
| 598 | nt->np.name = "netconsole"; |
| 599 | strlcpy(nt->np.dev_name, "eth0", IFNAMSIZ); |
| 600 | nt->np.local_port = 6665; |
| 601 | nt->np.remote_port = 6666; |
Dan Aloni | 7a163bf | 2013-08-30 13:59:46 +0300 | [diff] [blame] | 602 | mutex_init(&nt->mutex); |
Satyam Sharma | 0bcc181 | 2007-08-10 15:35:05 -0700 | [diff] [blame] | 603 | memset(nt->np.remote_mac, 0xff, ETH_ALEN); |
| 604 | |
| 605 | /* Initialize the config_item member */ |
| 606 | config_item_init_type_name(&nt->item, name, &netconsole_target_type); |
| 607 | |
| 608 | /* Adding, but it is disabled */ |
| 609 | spin_lock_irqsave(&target_list_lock, flags); |
| 610 | list_add(&nt->list, &target_list); |
| 611 | spin_unlock_irqrestore(&target_list_lock, flags); |
| 612 | |
Joel Becker | f89ab86 | 2008-07-17 14:53:48 -0700 | [diff] [blame] | 613 | return &nt->item; |
Satyam Sharma | 0bcc181 | 2007-08-10 15:35:05 -0700 | [diff] [blame] | 614 | } |
| 615 | |
| 616 | static void drop_netconsole_target(struct config_group *group, |
| 617 | struct config_item *item) |
| 618 | { |
| 619 | unsigned long flags; |
| 620 | struct netconsole_target *nt = to_target(item); |
| 621 | |
| 622 | spin_lock_irqsave(&target_list_lock, flags); |
| 623 | list_del(&nt->list); |
| 624 | spin_unlock_irqrestore(&target_list_lock, flags); |
| 625 | |
| 626 | /* |
| 627 | * The target may have never been enabled, or was manually disabled |
| 628 | * before being removed so netpoll may have already been cleaned up. |
| 629 | */ |
| 630 | if (nt->enabled) |
| 631 | netpoll_cleanup(&nt->np); |
| 632 | |
| 633 | config_item_put(&nt->item); |
| 634 | } |
| 635 | |
| 636 | static struct configfs_group_operations netconsole_subsys_group_ops = { |
| 637 | .make_item = make_netconsole_target, |
| 638 | .drop_item = drop_netconsole_target, |
| 639 | }; |
| 640 | |
| 641 | static struct config_item_type netconsole_subsys_type = { |
| 642 | .ct_group_ops = &netconsole_subsys_group_ops, |
| 643 | .ct_owner = THIS_MODULE, |
| 644 | }; |
| 645 | |
| 646 | /* The netconsole configfs subsystem */ |
| 647 | static struct configfs_subsystem netconsole_subsys = { |
| 648 | .su_group = { |
| 649 | .cg_item = { |
| 650 | .ci_namebuf = "netconsole", |
| 651 | .ci_type = &netconsole_subsys_type, |
| 652 | }, |
| 653 | }, |
| 654 | }; |
| 655 | |
| 656 | #endif /* CONFIG_NETCONSOLE_DYNAMIC */ |
| 657 | |
Satyam Sharma | 17951f3 | 2007-08-10 15:33:01 -0700 | [diff] [blame] | 658 | /* Handle network interface device notifications */ |
| 659 | static int netconsole_netdev_event(struct notifier_block *this, |
Jiri Pirko | 351638e | 2013-05-28 01:30:21 +0000 | [diff] [blame] | 660 | unsigned long event, void *ptr) |
Satyam Sharma | 17951f3 | 2007-08-10 15:33:01 -0700 | [diff] [blame] | 661 | { |
Satyam Sharma | b5427c2 | 2007-08-10 15:33:40 -0700 | [diff] [blame] | 662 | unsigned long flags; |
| 663 | struct netconsole_target *nt; |
Jiri Pirko | 351638e | 2013-05-28 01:30:21 +0000 | [diff] [blame] | 664 | struct net_device *dev = netdev_notifier_info_to_dev(ptr); |
Ferenc Wagner | 141dfba | 2011-01-06 05:11:19 +0000 | [diff] [blame] | 665 | bool stopped = false; |
Satyam Sharma | 17951f3 | 2007-08-10 15:33:01 -0700 | [diff] [blame] | 666 | |
WANG Cong | 0e34e93 | 2010-05-06 00:47:21 -0700 | [diff] [blame] | 667 | if (!(event == NETDEV_CHANGENAME || event == NETDEV_UNREGISTER || |
Amerigo Wang | daf9209 | 2011-05-19 21:39:12 +0000 | [diff] [blame] | 668 | event == NETDEV_RELEASE || event == NETDEV_JOIN)) |
Satyam Sharma | b5427c2 | 2007-08-10 15:33:40 -0700 | [diff] [blame] | 669 | goto done; |
Satyam Sharma | 17951f3 | 2007-08-10 15:33:01 -0700 | [diff] [blame] | 670 | |
Satyam Sharma | b5427c2 | 2007-08-10 15:33:40 -0700 | [diff] [blame] | 671 | spin_lock_irqsave(&target_list_lock, flags); |
Veaceslav Falico | 3f315be | 2013-03-11 00:21:48 +0000 | [diff] [blame] | 672 | restart: |
Satyam Sharma | b5427c2 | 2007-08-10 15:33:40 -0700 | [diff] [blame] | 673 | list_for_each_entry(nt, &target_list, list) { |
Satyam Sharma | 0bcc181 | 2007-08-10 15:35:05 -0700 | [diff] [blame] | 674 | netconsole_target_get(nt); |
Satyam Sharma | b5427c2 | 2007-08-10 15:33:40 -0700 | [diff] [blame] | 675 | if (nt->np.dev == dev) { |
| 676 | switch (event) { |
Satyam Sharma | b5427c2 | 2007-08-10 15:33:40 -0700 | [diff] [blame] | 677 | case NETDEV_CHANGENAME: |
| 678 | strlcpy(nt->np.dev_name, dev->name, IFNAMSIZ); |
| 679 | break; |
Amerigo Wang | daf9209 | 2011-05-19 21:39:12 +0000 | [diff] [blame] | 680 | case NETDEV_RELEASE: |
Amerigo Wang | 8d8fc29 | 2011-05-19 21:39:10 +0000 | [diff] [blame] | 681 | case NETDEV_JOIN: |
Bruno Prémont | 2382b15 | 2009-04-29 20:45:17 +0000 | [diff] [blame] | 682 | case NETDEV_UNREGISTER: |
Nikolay Aleksandrov | c71380f | 2013-09-19 15:02:36 +0200 | [diff] [blame] | 683 | /* rtnl_lock already held |
Veaceslav Falico | 3f315be | 2013-03-11 00:21:48 +0000 | [diff] [blame] | 684 | * we might sleep in __netpoll_cleanup() |
Neil Horman | 3b410a3 | 2010-10-13 16:01:52 +0000 | [diff] [blame] | 685 | */ |
Veaceslav Falico | 3f315be | 2013-03-11 00:21:48 +0000 | [diff] [blame] | 686 | spin_unlock_irqrestore(&target_list_lock, flags); |
Dan Aloni | 7a163bf | 2013-08-30 13:59:46 +0300 | [diff] [blame] | 687 | |
Veaceslav Falico | 3f315be | 2013-03-11 00:21:48 +0000 | [diff] [blame] | 688 | __netpoll_cleanup(&nt->np); |
Dan Aloni | 7a163bf | 2013-08-30 13:59:46 +0300 | [diff] [blame] | 689 | |
Veaceslav Falico | 3f315be | 2013-03-11 00:21:48 +0000 | [diff] [blame] | 690 | spin_lock_irqsave(&target_list_lock, flags); |
| 691 | dev_put(nt->np.dev); |
| 692 | nt->np.dev = NULL; |
Bruno Prémont | 2382b15 | 2009-04-29 20:45:17 +0000 | [diff] [blame] | 693 | nt->enabled = 0; |
Ferenc Wagner | 141dfba | 2011-01-06 05:11:19 +0000 | [diff] [blame] | 694 | stopped = true; |
Veaceslav Falico | 3f315be | 2013-03-11 00:21:48 +0000 | [diff] [blame] | 695 | netconsole_target_put(nt); |
| 696 | goto restart; |
Satyam Sharma | b5427c2 | 2007-08-10 15:33:40 -0700 | [diff] [blame] | 697 | } |
Satyam Sharma | 17951f3 | 2007-08-10 15:33:01 -0700 | [diff] [blame] | 698 | } |
Satyam Sharma | 0bcc181 | 2007-08-10 15:35:05 -0700 | [diff] [blame] | 699 | netconsole_target_put(nt); |
Satyam Sharma | 17951f3 | 2007-08-10 15:33:01 -0700 | [diff] [blame] | 700 | } |
Satyam Sharma | b5427c2 | 2007-08-10 15:33:40 -0700 | [diff] [blame] | 701 | spin_unlock_irqrestore(&target_list_lock, flags); |
Amerigo Wang | 8d8fc29 | 2011-05-19 21:39:10 +0000 | [diff] [blame] | 702 | if (stopped) { |
Joe Perches | 22ded57 | 2013-10-28 12:53:21 -0700 | [diff] [blame] | 703 | const char *msg = "had an event"; |
Amerigo Wang | 8d8fc29 | 2011-05-19 21:39:10 +0000 | [diff] [blame] | 704 | switch (event) { |
| 705 | case NETDEV_UNREGISTER: |
Joe Perches | 22ded57 | 2013-10-28 12:53:21 -0700 | [diff] [blame] | 706 | msg = "unregistered"; |
Amerigo Wang | 8d8fc29 | 2011-05-19 21:39:10 +0000 | [diff] [blame] | 707 | break; |
Amerigo Wang | daf9209 | 2011-05-19 21:39:12 +0000 | [diff] [blame] | 708 | case NETDEV_RELEASE: |
Joe Perches | 22ded57 | 2013-10-28 12:53:21 -0700 | [diff] [blame] | 709 | msg = "released slaves"; |
Amerigo Wang | 8d8fc29 | 2011-05-19 21:39:10 +0000 | [diff] [blame] | 710 | break; |
| 711 | case NETDEV_JOIN: |
Joe Perches | 22ded57 | 2013-10-28 12:53:21 -0700 | [diff] [blame] | 712 | msg = "is joining a master device"; |
Amerigo Wang | 8d8fc29 | 2011-05-19 21:39:10 +0000 | [diff] [blame] | 713 | break; |
| 714 | } |
Joe Perches | 22ded57 | 2013-10-28 12:53:21 -0700 | [diff] [blame] | 715 | pr_info("network logging stopped on interface %s as it %s\n", |
| 716 | dev->name, msg); |
Amerigo Wang | 8d8fc29 | 2011-05-19 21:39:10 +0000 | [diff] [blame] | 717 | } |
Satyam Sharma | 17951f3 | 2007-08-10 15:33:01 -0700 | [diff] [blame] | 718 | |
Satyam Sharma | b5427c2 | 2007-08-10 15:33:40 -0700 | [diff] [blame] | 719 | done: |
Satyam Sharma | 17951f3 | 2007-08-10 15:33:01 -0700 | [diff] [blame] | 720 | return NOTIFY_DONE; |
| 721 | } |
| 722 | |
| 723 | static struct notifier_block netconsole_netdev_notifier = { |
| 724 | .notifier_call = netconsole_netdev_event, |
| 725 | }; |
| 726 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 727 | static void write_msg(struct console *con, const char *msg, unsigned int len) |
| 728 | { |
| 729 | int frag, left; |
| 730 | unsigned long flags; |
Satyam Sharma | b5427c2 | 2007-08-10 15:33:40 -0700 | [diff] [blame] | 731 | struct netconsole_target *nt; |
| 732 | const char *tmp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 733 | |
Amerigo Wang | c1a6085 | 2012-11-08 03:42:38 +0000 | [diff] [blame] | 734 | if (oops_only && !oops_in_progress) |
| 735 | return; |
Satyam Sharma | b5427c2 | 2007-08-10 15:33:40 -0700 | [diff] [blame] | 736 | /* Avoid taking lock and disabling interrupts unnecessarily */ |
| 737 | if (list_empty(&target_list)) |
| 738 | return; |
| 739 | |
| 740 | spin_lock_irqsave(&target_list_lock, flags); |
| 741 | list_for_each_entry(nt, &target_list, list) { |
Satyam Sharma | 0bcc181 | 2007-08-10 15:35:05 -0700 | [diff] [blame] | 742 | netconsole_target_get(nt); |
| 743 | if (nt->enabled && netif_running(nt->np.dev)) { |
Satyam Sharma | b5427c2 | 2007-08-10 15:33:40 -0700 | [diff] [blame] | 744 | /* |
| 745 | * We nest this inside the for-each-target loop above |
| 746 | * so that we're able to get as much logging out to |
| 747 | * at least one target if we die inside here, instead |
| 748 | * of unnecessarily keeping all targets in lock-step. |
| 749 | */ |
| 750 | tmp = msg; |
| 751 | for (left = len; left;) { |
| 752 | frag = min(left, MAX_PRINT_CHUNK); |
| 753 | netpoll_send_udp(&nt->np, tmp, frag); |
| 754 | tmp += frag; |
| 755 | left -= frag; |
| 756 | } |
Satyam Sharma | 0cc120b | 2007-08-10 15:30:31 -0700 | [diff] [blame] | 757 | } |
Satyam Sharma | 0bcc181 | 2007-08-10 15:35:05 -0700 | [diff] [blame] | 758 | netconsole_target_put(nt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 759 | } |
Satyam Sharma | b5427c2 | 2007-08-10 15:33:40 -0700 | [diff] [blame] | 760 | spin_unlock_irqrestore(&target_list_lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 761 | } |
| 762 | |
| 763 | static struct console netconsole = { |
Satyam Sharma | d39badf | 2007-08-10 15:27:24 -0700 | [diff] [blame] | 764 | .name = "netcon", |
Michael Ellerman | 0517dee | 2008-04-15 00:49:04 -0700 | [diff] [blame] | 765 | .flags = CON_ENABLED, |
Satyam Sharma | d39badf | 2007-08-10 15:27:24 -0700 | [diff] [blame] | 766 | .write = write_msg, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 767 | }; |
| 768 | |
Satyam Sharma | d39badf | 2007-08-10 15:27:24 -0700 | [diff] [blame] | 769 | static int __init init_netconsole(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 770 | { |
Satyam Sharma | 0bcc181 | 2007-08-10 15:35:05 -0700 | [diff] [blame] | 771 | int err; |
Satyam Sharma | b5427c2 | 2007-08-10 15:33:40 -0700 | [diff] [blame] | 772 | struct netconsole_target *nt, *tmp; |
| 773 | unsigned long flags; |
| 774 | char *target_config; |
| 775 | char *input = config; |
Stephen Hemminger | b41848b | 2006-10-26 15:46:52 -0700 | [diff] [blame] | 776 | |
Satyam Sharma | 0bcc181 | 2007-08-10 15:35:05 -0700 | [diff] [blame] | 777 | if (strnlen(input, MAX_PARAM_LENGTH)) { |
| 778 | while ((target_config = strsep(&input, ";"))) { |
| 779 | nt = alloc_param_target(target_config); |
| 780 | if (IS_ERR(nt)) { |
| 781 | err = PTR_ERR(nt); |
| 782 | goto fail; |
| 783 | } |
Michael Ellerman | 0517dee | 2008-04-15 00:49:04 -0700 | [diff] [blame] | 784 | /* Dump existing printks when we register */ |
| 785 | netconsole.flags |= CON_PRINTBUFFER; |
| 786 | |
Satyam Sharma | 0bcc181 | 2007-08-10 15:35:05 -0700 | [diff] [blame] | 787 | spin_lock_irqsave(&target_list_lock, flags); |
| 788 | list_add(&nt->list, &target_list); |
| 789 | spin_unlock_irqrestore(&target_list_lock, flags); |
Satyam Sharma | b5427c2 | 2007-08-10 15:33:40 -0700 | [diff] [blame] | 790 | } |
Satyam Sharma | b5427c2 | 2007-08-10 15:33:40 -0700 | [diff] [blame] | 791 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 792 | |
Satyam Sharma | 17951f3 | 2007-08-10 15:33:01 -0700 | [diff] [blame] | 793 | err = register_netdevice_notifier(&netconsole_netdev_notifier); |
| 794 | if (err) |
Satyam Sharma | b5427c2 | 2007-08-10 15:33:40 -0700 | [diff] [blame] | 795 | goto fail; |
Satyam Sharma | 17951f3 | 2007-08-10 15:33:01 -0700 | [diff] [blame] | 796 | |
Satyam Sharma | 0bcc181 | 2007-08-10 15:35:05 -0700 | [diff] [blame] | 797 | err = dynamic_netconsole_init(); |
| 798 | if (err) |
| 799 | goto undonotifier; |
| 800 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 801 | register_console(&netconsole); |
Joe Perches | 22ded57 | 2013-10-28 12:53:21 -0700 | [diff] [blame] | 802 | pr_info("network logging started\n"); |
Satyam Sharma | d39badf | 2007-08-10 15:27:24 -0700 | [diff] [blame] | 803 | |
Satyam Sharma | d39badf | 2007-08-10 15:27:24 -0700 | [diff] [blame] | 804 | return err; |
Satyam Sharma | b5427c2 | 2007-08-10 15:33:40 -0700 | [diff] [blame] | 805 | |
Satyam Sharma | 0bcc181 | 2007-08-10 15:35:05 -0700 | [diff] [blame] | 806 | undonotifier: |
| 807 | unregister_netdevice_notifier(&netconsole_netdev_notifier); |
| 808 | |
Satyam Sharma | b5427c2 | 2007-08-10 15:33:40 -0700 | [diff] [blame] | 809 | fail: |
Joe Perches | 22ded57 | 2013-10-28 12:53:21 -0700 | [diff] [blame] | 810 | pr_err("cleaning up\n"); |
Satyam Sharma | b5427c2 | 2007-08-10 15:33:40 -0700 | [diff] [blame] | 811 | |
| 812 | /* |
Satyam Sharma | 0bcc181 | 2007-08-10 15:35:05 -0700 | [diff] [blame] | 813 | * Remove all targets and destroy them (only targets created |
| 814 | * from the boot/module option exist here). Skipping the list |
Satyam Sharma | b5427c2 | 2007-08-10 15:33:40 -0700 | [diff] [blame] | 815 | * lock is safe here, and netpoll_cleanup() will sleep. |
| 816 | */ |
| 817 | list_for_each_entry_safe(nt, tmp, &target_list, list) { |
| 818 | list_del(&nt->list); |
Satyam Sharma | 0bcc181 | 2007-08-10 15:35:05 -0700 | [diff] [blame] | 819 | free_param_target(nt); |
Satyam Sharma | b5427c2 | 2007-08-10 15:33:40 -0700 | [diff] [blame] | 820 | } |
| 821 | |
| 822 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 823 | } |
| 824 | |
Satyam Sharma | d39badf | 2007-08-10 15:27:24 -0700 | [diff] [blame] | 825 | static void __exit cleanup_netconsole(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 826 | { |
Satyam Sharma | b5427c2 | 2007-08-10 15:33:40 -0700 | [diff] [blame] | 827 | struct netconsole_target *nt, *tmp; |
Satyam Sharma | df180e3 | 2007-08-10 15:32:14 -0700 | [diff] [blame] | 828 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 829 | unregister_console(&netconsole); |
Satyam Sharma | 0bcc181 | 2007-08-10 15:35:05 -0700 | [diff] [blame] | 830 | dynamic_netconsole_exit(); |
Satyam Sharma | 17951f3 | 2007-08-10 15:33:01 -0700 | [diff] [blame] | 831 | unregister_netdevice_notifier(&netconsole_netdev_notifier); |
Satyam Sharma | b5427c2 | 2007-08-10 15:33:40 -0700 | [diff] [blame] | 832 | |
| 833 | /* |
Satyam Sharma | 0bcc181 | 2007-08-10 15:35:05 -0700 | [diff] [blame] | 834 | * Targets created via configfs pin references on our module |
| 835 | * and would first be rmdir(2)'ed from userspace. We reach |
| 836 | * here only when they are already destroyed, and only those |
| 837 | * created from the boot/module option are left, so remove and |
| 838 | * destroy them. Skipping the list lock is safe here, and |
| 839 | * netpoll_cleanup() will sleep. |
Satyam Sharma | b5427c2 | 2007-08-10 15:33:40 -0700 | [diff] [blame] | 840 | */ |
| 841 | list_for_each_entry_safe(nt, tmp, &target_list, list) { |
| 842 | list_del(&nt->list); |
Satyam Sharma | 0bcc181 | 2007-08-10 15:35:05 -0700 | [diff] [blame] | 843 | free_param_target(nt); |
Satyam Sharma | b5427c2 | 2007-08-10 15:33:40 -0700 | [diff] [blame] | 844 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 845 | } |
| 846 | |
Lin Ming | 97c7de0 | 2011-09-20 15:45:07 -0400 | [diff] [blame] | 847 | /* |
| 848 | * Use late_initcall to ensure netconsole is |
| 849 | * initialized after network device driver if built-in. |
| 850 | * |
| 851 | * late_initcall() and module_init() are identical if built as module. |
| 852 | */ |
| 853 | late_initcall(init_netconsole); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 854 | module_exit(cleanup_netconsole); |