aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/ieee1394/csr1212.c
diff options
context:
space:
mode:
authorStefan Richter <stefanr@s5r6.in-berlin.de>2007-03-11 17:50:13 -0400
committerStefan Richter <stefanr@s5r6.in-berlin.de>2007-04-29 18:00:28 -0400
commit64ff712321875c2457d3a77d3fc4ab4989f7a8c0 (patch)
tree05fa3dc1110fdecc90daa27bbf67311f0d530aba /drivers/ieee1394/csr1212.c
parent982610bd0d8e64baff36099f6dc456ea52d22257 (diff)
ieee1394: stricter error checks in csr1212
return -EINVAL becomes BUG_ON in checks of function call parameters. Signed-off-by: Stefan Richter <stefanr@s5r6.in-berlin.de>
Diffstat (limited to 'drivers/ieee1394/csr1212.c')
-rw-r--r--drivers/ieee1394/csr1212.c67
1 files changed, 24 insertions, 43 deletions
diff --git a/drivers/ieee1394/csr1212.c b/drivers/ieee1394/csr1212.c
index 65be507f4ee3..54408cbe8f8f 100644
--- a/drivers/ieee1394/csr1212.c
+++ b/drivers/ieee1394/csr1212.c
@@ -35,6 +35,7 @@
35 35
36#include <linux/errno.h> 36#include <linux/errno.h>
37#include <linux/string.h> 37#include <linux/string.h>
38#include <asm/bug.h>
38#include <asm/byteorder.h> 39#include <asm/byteorder.h>
39 40
40#include "csr1212.h" 41#include "csr1212.h"
@@ -305,43 +306,29 @@ struct csr1212_keyval *csr1212_new_directory(u8 key)
305 return kv; 306 return kv;
306} 307}
307 308
308int csr1212_associate_keyval(struct csr1212_keyval *kv, 309void csr1212_associate_keyval(struct csr1212_keyval *kv,
309 struct csr1212_keyval *associate) 310 struct csr1212_keyval *associate)
310{ 311{
311 if (!kv || !associate) 312 BUG_ON(!kv || !associate || kv->key.id == CSR1212_KV_ID_DESCRIPTOR ||
312 return -EINVAL; 313 (associate->key.id != CSR1212_KV_ID_DESCRIPTOR &&
313 314 associate->key.id != CSR1212_KV_ID_DEPENDENT_INFO &&
314 if (kv->key.id == CSR1212_KV_ID_DESCRIPTOR || 315 associate->key.id != CSR1212_KV_ID_EXTENDED_KEY &&
315 (associate->key.id != CSR1212_KV_ID_DESCRIPTOR && 316 associate->key.id != CSR1212_KV_ID_EXTENDED_DATA &&
316 associate->key.id != CSR1212_KV_ID_DEPENDENT_INFO && 317 associate->key.id < 0x30) ||
317 associate->key.id != CSR1212_KV_ID_EXTENDED_KEY && 318 (kv->key.id == CSR1212_KV_ID_EXTENDED_KEY_SPECIFIER_ID &&
318 associate->key.id != CSR1212_KV_ID_EXTENDED_DATA && 319 associate->key.id != CSR1212_KV_ID_EXTENDED_KEY) ||
319 associate->key.id < 0x30)) 320 (kv->key.id == CSR1212_KV_ID_EXTENDED_KEY &&
320 return -EINVAL; 321 associate->key.id != CSR1212_KV_ID_EXTENDED_DATA) ||
321 322 (associate->key.id == CSR1212_KV_ID_EXTENDED_KEY &&
322 if (kv->key.id == CSR1212_KV_ID_EXTENDED_KEY_SPECIFIER_ID && 323 kv->key.id != CSR1212_KV_ID_EXTENDED_KEY_SPECIFIER_ID) ||
323 associate->key.id != CSR1212_KV_ID_EXTENDED_KEY) 324 (associate->key.id == CSR1212_KV_ID_EXTENDED_DATA &&
324 return -EINVAL; 325 kv->key.id != CSR1212_KV_ID_EXTENDED_KEY));
325
326 if (kv->key.id == CSR1212_KV_ID_EXTENDED_KEY &&
327 associate->key.id != CSR1212_KV_ID_EXTENDED_DATA)
328 return -EINVAL;
329
330 if (associate->key.id == CSR1212_KV_ID_EXTENDED_KEY &&
331 kv->key.id != CSR1212_KV_ID_EXTENDED_KEY_SPECIFIER_ID)
332 return -EINVAL;
333
334 if (associate->key.id == CSR1212_KV_ID_EXTENDED_DATA &&
335 kv->key.id != CSR1212_KV_ID_EXTENDED_KEY)
336 return -EINVAL;
337 326
338 if (kv->associate) 327 if (kv->associate)
339 csr1212_release_keyval(kv->associate); 328 csr1212_release_keyval(kv->associate);
340 329
341 associate->refcnt++; 330 associate->refcnt++;
342 kv->associate = associate; 331 kv->associate = associate;
343
344 return CSR1212_SUCCESS;
345} 332}
346 333
347int csr1212_attach_keyval_to_directory(struct csr1212_keyval *dir, 334int csr1212_attach_keyval_to_directory(struct csr1212_keyval *dir,
@@ -349,8 +336,7 @@ int csr1212_attach_keyval_to_directory(struct csr1212_keyval *dir,
349{ 336{
350 struct csr1212_dentry *dentry; 337 struct csr1212_dentry *dentry;
351 338
352 if (!kv || !dir || dir->key.type != CSR1212_KV_TYPE_DIRECTORY) 339 BUG_ON(!kv || !dir || dir->key.type != CSR1212_KV_TYPE_DIRECTORY);
353 return -EINVAL;
354 340
355 dentry = CSR1212_MALLOC(sizeof(*dentry)); 341 dentry = CSR1212_MALLOC(sizeof(*dentry));
356 if (!dentry) 342 if (!dentry)
@@ -611,9 +597,8 @@ static int csr1212_append_new_cache(struct csr1212_csr *csr, size_t romsize)
611 struct csr1212_csr_rom_cache *cache; 597 struct csr1212_csr_rom_cache *cache;
612 u64 csr_addr; 598 u64 csr_addr;
613 599
614 if (!csr || !csr->ops || !csr->ops->allocate_addr_range || 600 BUG_ON(!csr || !csr->ops || !csr->ops->allocate_addr_range ||
615 !csr->ops->release_addr || csr->max_rom < 1) 601 !csr->ops->release_addr || csr->max_rom < 1);
616 return -EINVAL;
617 602
618 /* ROM size must be a multiple of csr->max_rom */ 603 /* ROM size must be a multiple of csr->max_rom */
619 romsize = (romsize + (csr->max_rom - 1)) & ~(csr->max_rom - 1); 604 romsize = (romsize + (csr->max_rom - 1)) & ~(csr->max_rom - 1);
@@ -950,8 +935,7 @@ int csr1212_generate_csr_image(struct csr1212_csr *csr)
950 int ret; 935 int ret;
951 int init_offset; 936 int init_offset;
952 937
953 if (!csr) 938 BUG_ON(!csr);
954 return -EINVAL;
955 939
956 cache = csr->cache_head; 940 cache = csr->cache_head;
957 941
@@ -1011,8 +995,7 @@ int csr1212_generate_csr_image(struct csr1212_csr *csr)
1011 995
1012 /* Make sure the Extended ROM leaf is a multiple of 996 /* Make sure the Extended ROM leaf is a multiple of
1013 * max_rom in size. */ 997 * max_rom in size. */
1014 if (csr->max_rom < 1) 998 BUG_ON(csr->max_rom < 1);
1015 return -EINVAL;
1016 leaf_size = (cache->len + (csr->max_rom - 1)) & 999 leaf_size = (cache->len + (csr->max_rom - 1)) &
1017 ~(csr->max_rom - 1); 1000 ~(csr->max_rom - 1);
1018 1001
@@ -1278,8 +1261,7 @@ int _csr1212_read_keyval(struct csr1212_csr *csr, struct csr1212_keyval *kv)
1278 u32 *cache_ptr; 1261 u32 *cache_ptr;
1279 u16 kv_len = 0; 1262 u16 kv_len = 0;
1280 1263
1281 if (!csr || !kv || csr->max_rom < 1) 1264 BUG_ON(!csr || !kv || csr->max_rom < 1);
1282 return -EINVAL;
1283 1265
1284 /* First find which cache the data should be in (or go in if not read 1266 /* First find which cache the data should be in (or go in if not read
1285 * yet). */ 1267 * yet). */
@@ -1436,8 +1418,7 @@ int csr1212_parse_csr(struct csr1212_csr *csr)
1436 struct csr1212_dentry *dentry; 1418 struct csr1212_dentry *dentry;
1437 int ret; 1419 int ret;
1438 1420
1439 if (!csr || !csr->ops || !csr->ops->bus_read) 1421 BUG_ON(!csr || !csr->ops || !csr->ops->bus_read);
1440 return -EINVAL;
1441 1422
1442 ret = csr1212_parse_bus_info_block(csr); 1423 ret = csr1212_parse_bus_info_block(csr);
1443 if (ret != CSR1212_SUCCESS) 1424 if (ret != CSR1212_SUCCESS)