Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
fw.c
Go to the documentation of this file.
1 /*
2  * Atheros CARL9170 driver
3  *
4  * firmware parser
5  *
6  * Copyright 2009, 2010, Christian Lamparter <[email protected]>
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program; see the file COPYING. If not, see
20  * http://www.gnu.org/licenses/.
21  */
22 
23 #include <linux/kernel.h>
24 #include <linux/firmware.h>
25 #include <linux/crc32.h>
26 #include <linux/module.h>
27 #include "carl9170.h"
28 #include "fwcmd.h"
29 #include "version.h"
30 
31 #define MAKE_STR(symbol) #symbol
32 #define TO_STR(symbol) MAKE_STR(symbol)
33 #define CARL9170FW_API_VER_STR TO_STR(CARL9170FW_API_MAX_VER)
35 
36 static const u8 otus_magic[4] = { OTUS_MAGIC };
37 
38 static const void *carl9170_fw_find_desc(struct ar9170 *ar, const u8 descid[4],
39  const unsigned int len, const u8 compatible_revision)
40 {
41  const struct carl9170fw_desc_head *iter;
42 
43  carl9170fw_for_each_hdr(iter, ar->fw.desc) {
44  if (carl9170fw_desc_cmp(iter, descid, len,
45  compatible_revision))
46  return (void *)iter;
47  }
48 
49  /* needed to find the LAST desc */
50  if (carl9170fw_desc_cmp(iter, descid, len,
51  compatible_revision))
52  return (void *)iter;
53 
54  return NULL;
55 }
56 
57 static int carl9170_fw_verify_descs(struct ar9170 *ar,
58  const struct carl9170fw_desc_head *head, unsigned int max_len)
59 {
60  const struct carl9170fw_desc_head *pos;
61  unsigned long pos_addr, end_addr;
62  unsigned int pos_length;
63 
64  if (max_len < sizeof(*pos))
65  return -ENODATA;
66 
67  max_len = min_t(unsigned int, CARL9170FW_DESC_MAX_LENGTH, max_len);
68 
69  pos = head;
70  pos_addr = (unsigned long) pos;
71  end_addr = pos_addr + max_len;
72 
73  while (pos_addr < end_addr) {
74  if (pos_addr + sizeof(*head) > end_addr)
75  return -E2BIG;
76 
77  pos_length = le16_to_cpu(pos->length);
78 
79  if (pos_length < sizeof(*head))
80  return -EBADMSG;
81 
82  if (pos_length > max_len)
83  return -EOVERFLOW;
84 
85  if (pos_addr + pos_length > end_addr)
86  return -EMSGSIZE;
87 
88  if (carl9170fw_desc_cmp(pos, LAST_MAGIC,
91  return 0;
92 
93  pos_addr += pos_length;
94  pos = (void *)pos_addr;
95  max_len -= pos_length;
96  }
97  return -EINVAL;
98 }
99 
100 static void carl9170_fw_info(struct ar9170 *ar)
101 {
102  const struct carl9170fw_motd_desc *motd_desc;
103  unsigned int str_ver_len;
104  u32 fw_date;
105 
106  dev_info(&ar->udev->dev, "driver API: %s 2%03d-%02d-%02d [%d-%d]\n",
110 
111  motd_desc = carl9170_fw_find_desc(ar, MOTD_MAGIC,
112  sizeof(*motd_desc), CARL9170FW_MOTD_DESC_CUR_VER);
113 
114  if (motd_desc) {
115  str_ver_len = strnlen(motd_desc->release,
117 
118  fw_date = le32_to_cpu(motd_desc->fw_year_month_day);
119 
120  dev_info(&ar->udev->dev, "firmware API: %.*s 2%03d-%02d-%02d\n",
121  str_ver_len, motd_desc->release,
122  CARL9170FW_GET_YEAR(fw_date),
123  CARL9170FW_GET_MONTH(fw_date),
124  CARL9170FW_GET_DAY(fw_date));
125 
126  strlcpy(ar->hw->wiphy->fw_version, motd_desc->release,
127  sizeof(ar->hw->wiphy->fw_version));
128  }
129 }
130 
131 static bool valid_dma_addr(const u32 address)
132 {
133  if (address >= AR9170_SRAM_OFFSET &&
134  address < (AR9170_SRAM_OFFSET + AR9170_SRAM_SIZE))
135  return true;
136 
137  return false;
138 }
139 
140 static bool valid_cpu_addr(const u32 address)
141 {
142  if (valid_dma_addr(address) || (address >= AR9170_PRAM_OFFSET &&
143  address < (AR9170_PRAM_OFFSET + AR9170_PRAM_SIZE)))
144  return true;
145 
146  return false;
147 }
148 
149 static int carl9170_fw_checksum(struct ar9170 *ar, const __u8 *data,
150  size_t len)
151 {
152  const struct carl9170fw_otus_desc *otus_desc;
153  const struct carl9170fw_last_desc *last_desc;
154  const struct carl9170fw_chk_desc *chk_desc;
155  unsigned long fin, diff;
156  unsigned int dsc_len;
157  u32 crc32;
158 
159  last_desc = carl9170_fw_find_desc(ar, LAST_MAGIC,
160  sizeof(*last_desc), CARL9170FW_LAST_DESC_CUR_VER);
161  if (!last_desc)
162  return -EINVAL;
163 
164  otus_desc = carl9170_fw_find_desc(ar, OTUS_MAGIC,
165  sizeof(*otus_desc), CARL9170FW_OTUS_DESC_CUR_VER);
166  if (!otus_desc) {
167  dev_err(&ar->udev->dev, "failed to find compatible firmware "
168  "descriptor.\n");
169  return -ENODATA;
170  }
171 
172  chk_desc = carl9170_fw_find_desc(ar, CHK_MAGIC,
173  sizeof(*chk_desc), CARL9170FW_CHK_DESC_CUR_VER);
174 
175  if (!chk_desc) {
176  dev_warn(&ar->udev->dev, "Unprotected firmware image.\n");
177  return 0;
178  }
179 
180  dsc_len = min_t(unsigned int, len,
181  (unsigned long)chk_desc - (unsigned long)otus_desc);
182 
183  fin = (unsigned long) last_desc + sizeof(*last_desc);
184  diff = fin - (unsigned long) otus_desc;
185 
186  if (diff < len)
187  len -= diff;
188 
189  if (len < 256)
190  return -EIO;
191 
192  crc32 = crc32_le(~0, data, len);
193  if (cpu_to_le32(crc32) != chk_desc->fw_crc32) {
194  dev_err(&ar->udev->dev, "fw checksum test failed.\n");
195  return -ENOEXEC;
196  }
197 
198  crc32 = crc32_le(crc32, (void *)otus_desc, dsc_len);
199  if (cpu_to_le32(crc32) != chk_desc->hdr_crc32) {
200  dev_err(&ar->udev->dev, "descriptor check failed.\n");
201  return -EINVAL;
202  }
203  return 0;
204 }
205 
206 static int carl9170_fw_tx_sequence(struct ar9170 *ar)
207 {
208  const struct carl9170fw_txsq_desc *txsq_desc;
209 
210  txsq_desc = carl9170_fw_find_desc(ar, TXSQ_MAGIC, sizeof(*txsq_desc),
212  if (txsq_desc) {
213  ar->fw.tx_seq_table = le32_to_cpu(txsq_desc->seq_table_addr);
214  if (!valid_cpu_addr(ar->fw.tx_seq_table))
215  return -EINVAL;
216  } else {
217  ar->fw.tx_seq_table = 0;
218  }
219 
220  return 0;
221 }
222 
223 static int carl9170_fw(struct ar9170 *ar, const __u8 *data, size_t len)
224 {
225  const struct carl9170fw_otus_desc *otus_desc;
226  int err;
227  u16 if_comb_types;
228 
229  err = carl9170_fw_checksum(ar, data, len);
230  if (err)
231  return err;
232 
233  otus_desc = carl9170_fw_find_desc(ar, OTUS_MAGIC,
234  sizeof(*otus_desc), CARL9170FW_OTUS_DESC_CUR_VER);
235  if (!otus_desc) {
236  return -ENODATA;
237  }
238 
239 #define SUPP(feat) \
240  (carl9170fw_supports(otus_desc->feature_set, feat))
241 
243  dev_err(&ar->udev->dev, "invalid firmware descriptor "
244  "format detected.\n");
245  return -EINVAL;
246  }
247 
248  ar->fw.api_version = otus_desc->api_ver;
249 
250  if (ar->fw.api_version < CARL9170FW_API_MIN_VER ||
251  ar->fw.api_version > CARL9170FW_API_MAX_VER) {
252  dev_err(&ar->udev->dev, "unsupported firmware api version.\n");
253  return -EINVAL;
254  }
255 
258  dev_err(&ar->udev->dev, "firmware does support "
259  "mandatory features.\n");
260  return -ECANCELED;
261  }
262 
263  if (ilog2(le32_to_cpu(otus_desc->feature_set)) >=
265  dev_warn(&ar->udev->dev, "driver does not support all "
266  "firmware features.\n");
267  }
268 
270  dev_info(&ar->udev->dev, "crypto offloading is disabled "
271  "by firmware.\n");
272  ar->disable_offload = true;
273  }
274 
276  ar->hw->flags |= IEEE80211_HW_SUPPORTS_PS;
277 
279  dev_err(&ar->udev->dev, "firmware does not provide "
280  "mandatory interfaces.\n");
281  return -EINVAL;
282  }
283 
285  ar->fw.offset = le16_to_cpu(otus_desc->miniboot_size);
286  else
287  ar->fw.offset = 0;
288 
290  ar->hw->extra_tx_headroom += sizeof(struct ar9170_stream);
291  ar->fw.tx_stream = true;
292  }
293 
295  ar->fw.rx_stream = true;
296 
297  if (SUPP(CARL9170FW_RX_FILTER)) {
298  ar->fw.rx_filter = true;
302  }
303 
305  ar->fw.hw_counters = true;
306 
307  if (SUPP(CARL9170FW_WOL))
308  device_set_wakeup_enable(&ar->udev->dev, true);
309 
311  ar->fw.ba_filter = true;
312 
313  if_comb_types = BIT(NL80211_IFTYPE_STATION) |
315 
316  ar->fw.vif_num = otus_desc->vif_num;
317  ar->fw.cmd_bufs = otus_desc->cmd_bufs;
318  ar->fw.address = le32_to_cpu(otus_desc->fw_address);
319  ar->fw.rx_size = le16_to_cpu(otus_desc->rx_max_frame_len);
320  ar->fw.mem_blocks = min_t(unsigned int, otus_desc->tx_descs, 0xfe);
321  atomic_set(&ar->mem_free_blocks, ar->fw.mem_blocks);
322  ar->fw.mem_block_size = le16_to_cpu(otus_desc->tx_frag_len);
323 
324  if (ar->fw.vif_num >= AR9170_MAX_VIRTUAL_MAC || !ar->fw.vif_num ||
325  ar->fw.mem_blocks < 16 || !ar->fw.cmd_bufs ||
326  ar->fw.mem_block_size < 64 || ar->fw.mem_block_size > 512 ||
327  ar->fw.rx_size > 32768 || ar->fw.rx_size < 4096 ||
328  !valid_cpu_addr(ar->fw.address)) {
329  dev_err(&ar->udev->dev, "firmware shows obvious signs of "
330  "malicious tampering.\n");
331  return -EINVAL;
332  }
333 
334  ar->fw.beacon_addr = le32_to_cpu(otus_desc->bcn_addr);
335  ar->fw.beacon_max_len = le16_to_cpu(otus_desc->bcn_len);
336 
337  if (valid_dma_addr(ar->fw.beacon_addr) && ar->fw.beacon_max_len >=
339  ar->hw->wiphy->interface_modes |= BIT(NL80211_IFTYPE_ADHOC);
340 
342  if_comb_types |=
346  }
347  }
348 
349  ar->if_comb_limits[0].max = ar->fw.vif_num;
350  ar->if_comb_limits[0].types = if_comb_types;
351 
352  ar->if_combs[0].num_different_channels = 1;
353  ar->if_combs[0].max_interfaces = ar->fw.vif_num;
354  ar->if_combs[0].limits = ar->if_comb_limits;
355  ar->if_combs[0].n_limits = ARRAY_SIZE(ar->if_comb_limits);
356 
357  ar->hw->wiphy->iface_combinations = ar->if_combs;
358  ar->hw->wiphy->n_iface_combinations = ARRAY_SIZE(ar->if_combs);
359 
360  ar->hw->wiphy->interface_modes |= if_comb_types;
361 
362  ar->hw->wiphy->flags |= WIPHY_FLAG_HAS_REMAIN_ON_CHANNEL;
363 
364 #undef SUPPORTED
365  return carl9170_fw_tx_sequence(ar);
366 }
367 
368 static struct carl9170fw_desc_head *
369 carl9170_find_fw_desc(struct ar9170 *ar, const __u8 *fw_data, const size_t len)
370 
371 {
372  int scan = 0, found = 0;
373 
374  if (!carl9170fw_size_check(len)) {
375  dev_err(&ar->udev->dev, "firmware size is out of bound.\n");
376  return NULL;
377  }
378 
379  while (scan < len - sizeof(struct carl9170fw_desc_head)) {
380  if (fw_data[scan++] == otus_magic[found])
381  found++;
382  else
383  found = 0;
384 
385  if (scan >= len)
386  break;
387 
388  if (found == sizeof(otus_magic))
389  break;
390  }
391 
392  if (found != sizeof(otus_magic))
393  return NULL;
394 
395  return (void *)&fw_data[scan - found];
396 }
397 
399 {
400  const struct carl9170fw_desc_head *fw_desc = NULL;
401  const struct firmware *fw = ar->fw.fw;
402  unsigned long header_offset = 0;
403  int err;
404 
405  if (WARN_ON(!fw))
406  return -EINVAL;
407 
408  fw_desc = carl9170_find_fw_desc(ar, fw->data, fw->size);
409 
410  if (!fw_desc) {
411  dev_err(&ar->udev->dev, "unsupported firmware.\n");
412  return -ENODATA;
413  }
414 
415  header_offset = (unsigned long)fw_desc - (unsigned long)fw->data;
416 
417  err = carl9170_fw_verify_descs(ar, fw_desc, fw->size - header_offset);
418  if (err) {
419  dev_err(&ar->udev->dev, "damaged firmware (%d).\n", err);
420  return err;
421  }
422 
423  ar->fw.desc = fw_desc;
424 
425  carl9170_fw_info(ar);
426 
427  err = carl9170_fw(ar, fw->data, fw->size);
428  if (err) {
429  dev_err(&ar->udev->dev, "failed to parse firmware (%d).\n",
430  err);
431  return err;
432  }
433 
434  return 0;
435 }