[PATCH] ath10k: add soft/hard firmware crash option to simulate_fw_crash

Kalle Valo kvalo at qca.qualcomm.com
Thu Feb 27 05:33:00 EST 2014


Marek Puzyniak <marek.puzyniak at tieto.com> writes:

> Command WMI_FORCE_FW_HANG_CMDID is not supported in firmware 10.1.
> In order to have firmware crash simulation functionality also
> in firmware 10.1 driver can force firmware crash by performing
> not allowed operation. Driver can deliberately crash firmware
> when setting vdev param for vdev id out of range.
> This patch introduces two keywords to simulate_fw_crash:
> 'soft' which will cause firmware crash that is recoverable
>        by warm firmware reset but supported only in main firmware.
> 'hard' which will cause firmware crash recoverable by cold
>        firmware reset, this option works for both firmwares.
>
> Commands to trigger firmware soft/hard crash:
> echo 'soft' > /sys/kernel/debug/ieee80211/phyX/ath10k/simulate_fw_crash
> echo 'hard' > /sys/kernel/debug/ieee80211/phyX/ath10k/simulate_fw_crash
>
> Signed-off-by: Marek Puzyniak <marek.puzyniak at tieto.com>

[...]

> +/* Simulate firmware crash:
> + * 'soft': Call wmi command causing firmware hang. This firmware hang is
> + * recoverable by warm firmware reset.
> + * 'hard': Force firmware crash by setting any vdev parameter for not allowed
> + * vdev id. This is hard firmware crash because it is recoverable only by cold
> + * firmware reset.
> + */
>  static ssize_t ath10k_write_simulate_fw_crash(struct file *file,
>  					      const char __user *user_buf,
>  					      size_t count, loff_t *ppos)
> @@ -464,14 +475,11 @@ static ssize_t ath10k_write_simulate_fw_crash(struct file *file,
>  	struct ath10k *ar = file->private_data;
>  	char buf[32] = {};
>  	int ret;
> +	const char *mode;
>  
>  	mutex_lock(&ar->conf_mutex);
>  
>  	simple_write_to_buffer(buf, sizeof(buf) - 1, ppos, user_buf, count);
> -	if (strcmp(buf, "crash") && strcmp(buf, "crash\n")) {
> -		ret = -EINVAL;
> -		goto exit;
> -	}

Ouch, how did I miss use of strcmp() here. Is it guaranteed that buf is
properly null terminated? I don't see that. And even if it would be,
strncmp() would be much safer anyway.

> @@ -479,15 +487,22 @@ static ssize_t ath10k_write_simulate_fw_crash(struct file *file,
>  		goto exit;
>  	}
>  
> -	ath10k_info("simulating firmware crash\n");
> -
> -	ret = ath10k_wmi_force_fw_hang(ar, WMI_FORCE_FW_HANG_ASSERT, 0);
> -	if (ret)
> -		ath10k_warn("failed to force fw hang (%d)\n", ret);
> +	if (!strcmp(buf, "soft") || !strcmp(buf, "soft\n")) {
> +		mode = "soft";
> +		ret = ath10k_wmi_force_fw_hang(ar, WMI_FORCE_FW_HANG_ASSERT, 0);
> +	} else if (!strcmp(buf, "hard") || !strcmp(buf, "hard\n")) {

It's pretty ugly to check for both "foo" and "foo\n". This
would be cleaner:

if (buf[count - 1] == '\n') {
        buf[count - 1] = 0;
        count--;
}

That way you can also get rid of the mode variable.

> +		mode = "hard";
> +		ret = ath10k_wmi_vdev_set_param(ar, TARGET_NUM_VDEVS + 1,
> +					ar->wmi.vdev_param->rts_threshold, 0);

Add a small comment here explaining that you are using too large vdev id
or something like that.

> +	} else {
> +		ret = -EINVAL;
> +		goto exit;
> +	}
>  
> -	if (ret == 0)
> +	if (ret == 0) {
>  		ret = count;
> -
> +		ath10k_info("simulating firmware %s crash\n", mode);
> +	}

The info message is too late now, it should before the we crash the
firmware.

-- 
Kalle Valo



More information about the ath10k mailing list