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