source: rtems/cpukit/score/src/objectnametoid.c @ df54012

Last change on this file since df54012 was df54012, checked in by Joel Sherrill <joel.sherrill@…>, on 05/06/04 at 19:20:44

2004-05-06 Joel Sherrill <joel@…>

PR 618/rtems

  • include/rtems/score/object.h, src/coretodvalidate.c, src/objectnametoid.c: Add NULL checks.
  • Property mode set to 100644
File size: 2.6 KB
RevLine 
[317a5b5]1/*
2 *  Object Handler
3 *
4 *
[08311cc3]5 *  COPYRIGHT (c) 1989-1999.
[317a5b5]6 *  On-Line Applications Research Corporation (OAR).
7 *
8 *  The license and distribution terms for this file may be
9 *  found in the file LICENSE in this distribution or at
[a6eef8b]10 *  http://www.rtems.com/license/LICENSE.
[317a5b5]11 *
12 *  $Id$
13 */
14
15#include <rtems/system.h>
16#include <rtems/score/address.h>
17#include <rtems/score/chain.h>
18#include <rtems/score/object.h>
19#if defined(RTEMS_MULTIPROCESSING)
20#include <rtems/score/objectmp.h>
21#endif
22#include <rtems/score/thread.h>
23#include <rtems/score/wkspace.h>
24#include <rtems/score/sysstate.h>
25#include <rtems/score/isr.h>
26
27/*PAGE
28 *
29 *  _Objects_Name_to_id
30 *
31 *  These kernel routines search the object table(s) for the given
32 *  object name and returns the associated object id.
33 *
34 *  Input parameters:
35 *    information - object information
36 *    name        - user defined object name
37 *    node        - node indentifier (0 indicates any node)
38 *    id          - address of return ID
39 *
40 *  Output parameters:
41 *    id                 - object id
42 *    OBJECTS_SUCCESSFUL - if successful
43 *    error code         - if unsuccessful
44 */
45
46Objects_Name_to_id_errors _Objects_Name_to_id(
47  Objects_Information *information,
48  Objects_Name         name,
49  unsigned32           node,
50  Objects_Id          *id
51)
52{
53  boolean                    search_local_node;
54  Objects_Control           *the_object;
55  unsigned32                 index;
56  unsigned32                 name_length;
57  Objects_Name_comparators   compare_them;
58
[df54012]59  if ( !id )
60    return OBJECTS_INVALID_ADDRESS;
61
[317a5b5]62  if ( name == 0 )
63    return OBJECTS_INVALID_NAME;
64
65  search_local_node = FALSE;
66
67  if ( information->maximum != 0 &&
68      (node == OBJECTS_SEARCH_ALL_NODES || node == OBJECTS_SEARCH_LOCAL_NODE ||
69      _Objects_Is_local_node( node ) ) )
70   search_local_node = TRUE;
71
72  if ( search_local_node ) {
73    name_length = information->name_length;
74
75    if ( information->is_string ) compare_them = _Objects_Compare_name_string;
76    else                          compare_them = _Objects_Compare_name_raw;
77
78    for ( index = 1; index <= information->maximum; index++ ) {
79      the_object = information->local_table[ index ];
80      if ( !the_object || !the_object->name )
81        continue;
82
83      if ( (*compare_them)( name, the_object->name, name_length ) ) {
84        *id = the_object->id;
85        return OBJECTS_SUCCESSFUL;
86      }
87    }
88  }
89
90  if ( _Objects_Is_local_node( node ) || node == OBJECTS_SEARCH_LOCAL_NODE )
91    return OBJECTS_INVALID_NAME;
92
93#if defined(RTEMS_MULTIPROCESSING)
94  return ( _Objects_MP_Global_name_search( information, name, node, id ) );
95#else
96  return OBJECTS_INVALID_NAME;
97#endif
98}
Note: See TracBrowser for help on using the repository browser.