2009-01-12 Kai Tietz <kai.tietz@onevision.com>
[binutils.git] / gold / descriptors.cc
blob73c03bf4a457552baafd7e13ba6e9a3b3c3e458c
1 // descriptors.cc -- manage file descriptors for gold
3 // Copyright 2008 Free Software Foundation, Inc.
4 // Written by Ian Lance Taylor <iant@google.com>.
6 // This file is part of gold.
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 3 of the License, or
11 // (at your option) any later version.
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.
18 // You should have received a copy of the GNU General Public License
19 // along with this program; if not, write to the Free Software
20 // Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
21 // MA 02110-1301, USA.
23 #include "gold.h"
25 #include <cerrno>
26 #include <cstring>
27 #include <fcntl.h>
28 #include <unistd.h>
30 #include "parameters.h"
31 #include "gold-threads.h"
32 #include "descriptors.h"
34 namespace gold
37 // Class Descriptors.
39 // The default for limit_ is meant to simply be large. It gets
40 // adjusted downward if we run out of file descriptors.
42 Descriptors::Descriptors()
43 : lock_(NULL), open_descriptors_(), stack_top_(-1), current_(0),
44 limit_(8192 - 16)
46 this->open_descriptors_.reserve(128);
49 // Open a file.
51 int
52 Descriptors::open(int descriptor, const char* name, int flags, int mode)
54 // We don't initialize this until we are called, because we can't
55 // initialize a Lock until we have parsed the options to find out
56 // whether we are running with threads. We can be called before
57 // options are valid when reading a linker script.
58 if (this->lock_ == NULL)
60 if (parameters->options_valid())
61 this->lock_ = new Lock();
62 else
63 gold_assert(descriptor < 0);
66 if (descriptor >= 0)
68 Hold_lock hl(*this->lock_);
70 gold_assert(static_cast<size_t>(descriptor)
71 < this->open_descriptors_.size());
72 Open_descriptor* pod = &this->open_descriptors_[descriptor];
73 if (pod->name == name
74 || (pod->name != NULL && strcmp(pod->name, name) == 0))
76 gold_assert(!pod->inuse);
77 pod->inuse = true;
78 return descriptor;
82 while (true)
84 int new_descriptor = ::open(name, flags, mode);
85 if (new_descriptor < 0
86 && errno != ENFILE
87 && errno != EMFILE)
89 if (descriptor >= 0 && errno == ENOENT)
92 Hold_lock hl(*this->lock_);
94 gold_error(_("file %s was removed during the link"),
95 this->open_descriptors_[descriptor].name);
98 errno = ENOENT;
101 return new_descriptor;
104 if (new_descriptor >= 0)
106 Hold_optional_lock hl(this->lock_);
108 if (static_cast<size_t>(new_descriptor)
109 >= this->open_descriptors_.size())
110 this->open_descriptors_.resize(new_descriptor + 64);
112 Open_descriptor* pod = &this->open_descriptors_[new_descriptor];
113 pod->name = name;
114 pod->stack_next = -1;
115 pod->inuse = true;
116 pod->is_write = (flags & O_ACCMODE) != O_RDONLY;
118 if (!pod->is_claimed)
119 ++this->current_;
120 pod->is_claimed = false;
121 if (this->current_ >= this->limit_)
122 this->close_some_descriptor();
124 return new_descriptor;
127 // We ran out of file descriptors.
129 Hold_optional_lock hl(this->lock_);
131 this->limit_ = this->current_ - 16;
132 if (this->limit_ < 8)
133 this->limit_ = 8;
134 if (!this->close_some_descriptor())
135 gold_fatal(_("out of file descriptors and couldn't close any"));
140 // Release a descriptor.
142 void
143 Descriptors::release(int descriptor, bool permanent)
145 Hold_optional_lock hl(this->lock_);
147 gold_assert(descriptor >= 0
148 && (static_cast<size_t>(descriptor)
149 < this->open_descriptors_.size()));
150 Open_descriptor* pod = &this->open_descriptors_[descriptor];
152 if (permanent
153 || (this->current_ > this->limit_ && !pod->is_write))
155 if (::close(descriptor) < 0)
156 gold_warning(_("while closing %s: %s"), pod->name, strerror(errno));
157 pod->name = NULL;
158 --this->current_;
160 else
162 pod->inuse = false;
163 if (!pod->is_write)
165 pod->stack_next = this->stack_top_;
166 this->stack_top_ = descriptor;
171 // Claim the file descriptor DESCRIPTOR for a plugin. This effectively
172 // removes the descriptor from the pool of linker-managed descriptors,
173 // as the plugin will assume responsibility for closing it.
174 // The IS_CLAIMED flag allows us to recognize when a file descriptor
175 // has been reused after being closed by the plugin.
177 void
178 Descriptors::claim_for_plugin(int descriptor)
180 Hold_lock hl(*this->lock_);
182 gold_assert(descriptor >= 0
183 && (static_cast<size_t>(descriptor)
184 < this->open_descriptors_.size()));
185 Open_descriptor* pod = &this->open_descriptors_[descriptor];
186 pod->is_claimed = true;
189 // Close some descriptor. The lock is held when this is called. We
190 // close the descriptor on the top of the free stack. Note that this
191 // is the opposite of an LRU algorithm--we close the most recently
192 // used descriptor. That is because the linker tends to cycle through
193 // all the files; after we release a file, we are unlikely to need it
194 // again until we have looked at all the other files. Return true if
195 // we closed a descriptor.
197 bool
198 Descriptors::close_some_descriptor()
200 int last = -1;
201 int i = this->stack_top_;
202 while (i >= 0)
204 gold_assert(static_cast<size_t>(i) < this->open_descriptors_.size());
205 Open_descriptor* pod = &this->open_descriptors_[i];
206 if (!pod->inuse && !pod->is_write)
208 if (::close(i) < 0)
209 gold_warning(_("while closing %s: %s"), pod->name, strerror(errno));
210 --this->current_;
211 pod->name = NULL;
212 if (last < 0)
213 this->stack_top_ = pod->stack_next;
214 else
215 this->open_descriptors_[last].stack_next = pod->stack_next;
216 return true;
218 last = i;
219 i = pod->stack_next;
222 // We couldn't find any descriptors to close. This is weird but not
223 // necessarily an error.
224 return false;
227 // The single global variable which manages descriptors.
229 Descriptors descriptors;
231 } // End namespace gold.