1 /* Storage management for the chain of loaded shared objects.
2 Copyright (C) 1995,96,97,98,99,2000,2001 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Library General Public License as
7 published by the Free Software Foundation; either version 2 of the
8 License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Library General Public License for more details.
15 You should have received a copy of the GNU Library General Public
16 License along with the GNU C Library; see the file COPYING.LIB. If not,
17 write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18 Boston, MA 02111-1307, USA. */
29 /* Allocate a `struct link_map' for a new object being loaded,
30 and enter it into the _dl_loaded list. */
34 _dl_new_object (char *realname
, const char *libname
, int type
,
35 struct link_map
*loader
)
39 size_t libname_len
= strlen (libname
) + 1;
40 struct link_map
*new = calloc (sizeof *new, 1);
41 struct libname_list
*newname
= malloc (sizeof *newname
+ libname_len
);
42 if (! new || ! newname
)
45 new->l_name
= realname
;
46 newname
->name
= memcpy (newname
+ 1, libname
, libname_len
);
48 new->l_libname
= newname
;
50 new->l_loader
= loader
;
51 /* new->l_global = 0; We use calloc therefore not necessary. */
53 /* Counter for the scopes we have to handle. */
56 if (_dl_loaded
!= NULL
)
62 /* new->l_next = NULL; Would be necessary but we use calloc. */
65 /* Add the global scope. */
66 new->l_scope
[idx
++] = &_dl_loaded
->l_searchlist
;
71 /* This is our local scope. */
74 while (loader
->l_loader
!= NULL
)
75 loader
= loader
->l_loader
;
76 if (idx
== 0 || &loader
->l_searchlist
!= new->l_scope
[0])
77 new->l_scope
[idx
] = &loader
->l_searchlist
;
79 else if (idx
== 0 || &new->l_searchlist
!= new->l_scope
[0])
80 new->l_scope
[idx
] = &new->l_searchlist
;
82 new->l_local_scope
[0] = &new->l_searchlist
;
84 /* Don't try to find the origin for the main map which has the name "". */
85 if (realname
[0] != '\0')
89 if (realname
[0] == '/')
91 /* It an absolute path. Use it. But we have to make a copy since
92 we strip out the trailing slash. */
93 size_t len
= strlen (realname
) + 1;
94 origin
= malloc (len
);
98 memcpy (origin
, realname
, len
);
102 size_t realname_len
= strlen (realname
) + 1;
103 size_t len
= 128 + realname_len
;
106 /* Get the current directory name. */
107 origin
= malloc (len
);
109 while (origin
!= NULL
110 && (result
= __getcwd (origin
, len
- realname_len
)) == NULL
114 origin
= (char *) realloc (origin
, len
);
119 /* We were not able to determine the current directory. */
122 origin
= (char *) -1;
126 /* Now append the filename. */
127 char *cp
= strchr (origin
, '\0');
132 memcpy (cp
, realname
, realname_len
);
136 if (origin
!= (char *) -1)
138 /* Now remove the filename and the slash. Do this even if the
139 string is something like "/foo" which leaves an empty string. */
140 char *last
= strrchr (origin
, '/');
148 new->l_origin
= origin
;