This file is indexed.

/usr/lib/python2.7/dist-packages/vamos/vampyr/Configuration.py is in undertaker 1.6-2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
"""utility classes for working in source trees"""

# Copyright (C) 2011 Christian Dietrich <christian.dietrich@informatik.uni-erlangen.de>
# Copyright (C) 2011-2012 Reinhard Tartler <tartler@informatik.uni-erlangen.de>
# Copyright (C) 2012 Christoph Egger <siccegge@informatik.uni-erlangen.de>
# Copyright (C) 2012 Manuel Zerpies <manuel.f.zerpies@ww.stud.uni-erlangen.de>
# Copyright (C) 2012-2014 Stefan Hengelein <stefan.hengelein@fau.de>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.

import vamos.vampyr.utils as utils
import vamos.golem.kbuild as kbuild
import vamos.tools as tools
import vamos.model as Model
from vamos.Config import Config
from vamos.vampyr.Messages import SparseMessage, GccMessage, ClangMessage, SpatchMessage

import logging
import os.path
import re
import shutil

class CheckerNotImplemented(RuntimeError):
    pass

class Configuration:
    def __init__(self, framework, basename, nth):
        self.cppflags = '%s.cppflags%s' % (basename, nth)
        self.source   = '%s.source%s' % (basename, nth)
        self.kconfig  = '%s.config%s' % (basename, nth)
        # Note, undertaker will clean up ".config*", which matches self.config_h
        self.config_h = '%s.config%s.h' % (basename, nth)
        self.framework = framework
        self.basename = basename
        self.write_config_h(self.config_h)

    def write_config_h(self, config_h):
        with open(config_h, 'w') as fd:
            cppflags = self.get_cppflags()
            flags = cppflags.split("-D")
            logging.debug("Generating %s, found %d items",
                          config_h, len(flags))
            for f in flags:
                if f == '': continue # skip empty fields
                try:
                    name, value = f.split('=')
                    fd.write("#define %s %s\n" % (name, value))
                except ValueError:
                    logging.error("%s: Failed to parse flag '%s'", config_h, f)

    def switch_to(self):
        raise NotImplementedError

    def get_cppflags(self):
        with open(self.cppflags, 'r') as fd:
            return fd.read().strip()

    def filename(self):
        return self.kconfig

    def __copy__(self):
        raise RuntimeError("Object <%s> is not copyable" % self)

    def __deepcopy__(self):
        raise RuntimeError("Object <%s> is not copyable" % self)

    def get_config_h(self):
        """
        Returns the path to a config.h like configuration file
        """
        return self.config_h


class BareConfiguration(Configuration):

    def __init__(self, framework, basename, nth):
        Configuration.__init__(self, framework, basename, nth)

    def __repr__(self):
        return '"' + self.get_cppflags() + '"'

    def switch_to(self):
        logging.debug("nothing to do for switching to %s", self)

    def __call_compiler(self, compiler, args, on_file):
        cmd = compiler + " " + args
        if compiler in self.framework.options['args']:
            cmd += " " + self.framework.options['args'][compiler]
        cmd += " " + self.get_cppflags()
        cmd += " '" + on_file + "'"
        (out, returncode) = tools.execute(cmd, failok=True)
        if returncode == 127:
            raise RuntimeError(compiler + " not found on this system?")
        else:
            return (out, returncode)

    def call_sparse(self, on_file):
        (messages, statuscode) = self.__call_compiler("sparse", "", on_file)
        if statuscode != 0:
            messages.append(on_file +
                            ":1: error: cannot compile file [ARTIFICIAL, rc=%d]" % statuscode)

        messages = SparseMessage.preprocess_messages(messages)
        messages = [SparseMessage(self, x) for x in messages]
        return messages


    def call_gcc(self, on_file):
        (messages, statuscode) = self.__call_compiler("gcc", "-o/dev/null -c", on_file)
        if statuscode != 0:
            messages.append(on_file +
                            ":1: error: cannot compile file [ARTIFICIAL, rc=%d]" % statuscode)

        messages = GccMessage.preprocess_messages(messages)
        messages = [GccMessage(self, x) for x in messages]
        return messages


    def call_clang(self, on_file):
        (messages, statuscode) = self.__call_compiler("clang", "--analyze", on_file)

        if statuscode != 0:
            messages.append(on_file +
                            ":1: error: cannot compile file [ARTIFICIAL, rc=%d]" % statuscode)

        messages = ClangMessage.preprocess_messages(messages)
        messages = [ClangMessage(self, x) for x in messages]
        return messages

    def expand(self, verify=True):
        pass

    def call_spatch(self, on_file):
        messages = []
        for test in self.framework.options['test']:
            (out, _) = self.__call_compiler("spatch", "-sp_file %s" % test, self.source)

            if len(out) > 1 or out[0] != '':
                out = SpatchMessage.preprocess_messages(out)
                messages += [SpatchMessage(self, x, on_file, test) for x in out]

        return messages


class KbuildConfiguration(Configuration):
    """A common base class for kbuild-like projects

    The expand method uses Kconfig to fill up the remaining
    variables. The parameter expansion_strategy of the __init__ method
    selects how partial configurations get expanded. In the default
    mode, 'alldefconfig', the strategy is to set the remaining variables
    to their Kconfig defined defaults. With 'allnoconfig', the strategy
    is to enable as few features as possible.

    The attribute 'model' of this class is allocated in the expand()
    method on demand.

    """
    def __init__(self, framework, basename, nth):
        Configuration.__init__(self, framework, basename, nth)

        self.expanded = None
        self.model = None
        self.arch = self.framework.options['arch']
        self.subarch = self.framework.options['subarch']
        self.result_cache = {}

        if self.framework.options.has_key('expansion_strategy'):
            self.expansion_strategy = self.framework.options['expansion_strategy']
        else:
            self.expansion_strategy = 'alldefconfig'

        try:
            os.unlink(self.kconfig + '.expanded')
        except OSError:
            pass

    def get_config_h(self):
        return self.framework.find_autoconf()

    def __repr__(self):
        raise NotImplementedError

    def call_makefile(self, target, extra_variables="", extra_env="", failok=False):
        return self.framework.call_makefile(target,
                                            extra_variables=extra_variables,
                                            extra_env=extra_env,
                                            failok=failok)

    def expand(self, verify=False):
        """
        @raises ExpansionError if verify=True and expanded config does
                               not patch all requested items
        """
        logging.debug("Trying to expand configuration " + self.kconfig)

        if not os.path.exists(self.kconfig):
            raise RuntimeError("Partial configuration %s does not exist" % self.kconfig)

        files = self.framework.cleanup_autoconf_h()

        if len(files) > 1:
            logging.error("Deleted spurious configuration files: %s", ", ".join(files))

        extra_env = 'KCONFIG_ALLCONFIG="%s"' % self.kconfig
        self.call_makefile(self.expansion_strategy, extra_env=extra_env)
        self.framework.apply_configuration()

        self.expanded = self.save_expanded('.config')

        if verify:
            modelf = Model.get_model_for_arch(self.arch)
            if not modelf:
                logging.error("Skipping verification as no model could be loaded")
                return

            if not self.model:
                self.model = Model.parse_model(modelf)
                logging.info("Loaded %d items from %s", len(self.model), modelf)

            all_items, violators = self.verify(self.expanded)
            if len(violators) > 0:
                logging.warning("%d/%d mismatched items", len(violators), len(all_items))
                for v in violators:
                    logging.info("violating item: %s", v)
                raise utils.ExpansionError("Config %s failed to expand properly" % self.kconfig)
            else:
                logging.info("All items are set correctly")

    def save_expanded(self, config):
        expanded_config = self.kconfig + '.expanded'
        shutil.copy(config, expanded_config)
        return expanded_config

    def get_expanded(self):
        """if already expanded, returns the path to the file that holds the expanded configuration

        returns None otherwise
        """
        expanded_config = self.kconfig + '.expanded'
        if os.path.exists(expanded_config):
            return expanded_config
        else:
            return None

    def expand_stdconfig(self):
        expanded = self.get_expanded()

        if expanded:
            shutil.copy(expanded, '.config')
        else:
            stdconfig = self.framework.options['stdconfig']
            self.call_makefile(stdconfig, failok=False)

            # mark this configuration as already expanded, now that we have saved it
            self.expanded = self.save_expanded('.config')
            shutil.copy(self.expanded, self.kconfig)

        self.framework.apply_configuration()

        if not self.framework.options.has_key('stdconfig_files'):
            self.framework.options['stdconfig_files'] \
                = set(kbuild.files_for_current_configuration(self.arch, self.subarch))

    def verify(self, expanded_config='.config'):
        """
        verifies that the given expanded configuration satisfies the
        constraints of the given partial configuration.

        @return (all_items, violators)
          all_items: set of all items in partial configuration
          violators: list of items that violate the partial selection
        """

        partial_config = Config(self.kconfig)
        config = Config(expanded_config)
        conflicts = config.getConflicts(partial_config)

        return (partial_config.keys(), conflicts)

    def switch_to(self):
        logging.info("Switching to configuration %s", self)

        # sanity check: remove existing configuration to ensure consistent behavior
        if os.path.exists(".config"):
            os.unlink(".config")

        if self.expanded is None:
            logging.debug("Expanding partial configuration %s", self.kconfig)
            self.expand()
        else:
            # now replace the old .config with our 'expanded' one
            shutil.copyfile(self.expanded, '.config')
            self.framework.apply_configuration()

        assert os.path.exists('.config')


    def call_make(self, on_file, extra_args):
        on_object = on_file[:-1] + "o"

        # dry compilation to ensure all dependent objects are present,
        # but only if we are actually interested in the compiler output
        if not 'CHECK=' in extra_args:
            self.call_makefile(on_object, failok=True, extra_variables=extra_args)

        if os.path.exists(on_object):
            os.unlink(on_object)

        try:
            cmd = None
            (messages, statuscode) = \
                self.call_makefile(on_object, failok=False, extra_variables=extra_args)
        except tools.CommandFailed as e:
            statuscode, cmd, messages = e.returncode, e.command, e.stdout

        state = None
        CC = []
        CHECK = []

        while len(messages) > 0:
            if re.match(r"^\s*CC\s*(\[M\]\s*)?" + on_object, messages[0]):
                state = "CC"
                del messages[0]
                continue
            if re.match(r"^\s*CHECK\s*(\[M\]\s*)?" + on_file, messages[0]):
                state = "CHECK"
                del messages[0]
                continue
            if re.match(r"fixdep: [\S]* is empty", messages[0]):
                del messages[0]
                continue

            # Skip lines before "    CC"
            if state == None:
                pass
            elif state == "CC":
                CC.append(messages[0])
            elif state == "CHECK":
                CHECK.append(messages[0])
            else:
                raise RuntimeError("Should never been reached")

            # Remove line
            del messages[0]

        if statuscode != 0:
            logging.error("Running checker %s on file %s failed", cmd, on_file)
            logging.error("contents of CC:")
            logging.error(CC)
            logging.error("contents of CHECK:")
            logging.error(CHECK)

        return (CC, CHECK)

    def call_gcc(self, on_file):
        """Call Gcc on the given file"""
        if "CC" in self.result_cache:
            return self.result_cache["CC"]

        extra_args = "KCFLAGS='%s'" % self.framework.options['args']['gcc']
        if self.framework.options.has_key('cross_prefix') and \
                len(self.framework.options['cross_prefix']) > 0:
            extra_args += " CROSS_COMPILE=%s" % self.framework.options['cross_prefix']
        (CC, _) = self.call_make(on_file, extra_args)

        messages = GccMessage.preprocess_messages(CC)
        messages = [GccMessage(self, x) for x in messages]
        self.result_cache["CC"] = messages
        return messages


    def call_sparse(self, on_file):
        """Call Sparse on the given file"""
        if "SPARSE" in self.result_cache:
            return self.result_cache["SPARSE"]

        sparse = "ulimit -t 30; sparse"
        if 'sparse' in self.framework.options['args']:
            sparse += " " + self.framework.options['args']['sparse']

        (CC, CHECK) = self.call_make(on_file, "C=2 CC='fakecc' CHECK='%s'" % sparse.replace("'", "\\'"))

        # GCC messages
        messages = GccMessage.preprocess_messages(CC)
        messages = [GccMessage(self, x) for x in messages]
        self.result_cache["CC"] = messages

        # Sparse messages
        messages = SparseMessage.preprocess_messages(CHECK)
        messages = [SparseMessage(self, x) for x in messages]
        self.result_cache["SPARSE"] = messages

        return messages

    def call_spatch(self, on_file):
        """Call Spatch on the given file"""
        if "SPATCH" in self.result_cache:
            return self.result_cache["SPATCH"]

        messages = []

        for test in self.framework.options['test']:
            spatch = 'vampyr-spatch-wrapper "%s" "%s" -sp_file "%s"' % (on_file, self.source, test)
            if 'spatch' in self.framework.options['args']:
                spatch += " " + self.framework.options['args']['spatch']

            (CC, CHECK) = self.call_make(on_file, "C=2 CHECK='%s' CC=fakecc" % spatch.replace("'", "\\'"))

            # GCC messages
            if "CC" not in self.result_cache:
                messages = GccMessage.preprocess_messages(CC)
                messages = [GccMessage(self, x) for x in messages]
                self.result_cache["CC"] = messages

            if len(CHECK) > 1 or (len(CHECK) > 0 and CHECK[0] != ''):
                # Sparse messages
                out = SpatchMessage.preprocess_messages(CHECK)
                messages += [SpatchMessage(self, x, on_file, test) for x in out]

        self.result_cache["SPATCH"] = messages
        return messages


class LinuxConfiguration(KbuildConfiguration):
    """
    This class represents a (partial) Linux configuration.

    The expand method uses Kconfig to fill up the remaining
    variables. The field expansion_strategy of the framework's option
    dict selects how partial configurations get expanded. In the default
    mode, 'alldefconfig', the strategy is to set the remaining variables
    to their Kconfig defined defaults. With 'allnoconfig', the strategy
    is to enable as few features as possible.

    The attribute 'model' of this class is allocated in the expand()
    method on demand.

    """
    def __init__(self, framework, basename, nth):
        KbuildConfiguration.__init__(self, framework, basename, nth)
        self.arch    = self.framework.options['arch']
        self.subarch = self.framework.options['subarch']

    def __repr__(self):
        return '<LinuxConfiguration "' + self.kconfig + '">'


class LinuxPartialConfiguration(LinuxConfiguration):
    """
    This class creates a configuration object for a partial Linux
    Configuration. This works on arbitrary partial configurations, like
    "trolled" ones.

    NB: the self.cppflags and self.source is set to "/dev/null"
    """

    def __init__(self, framework, filename, arch=None, subarch=None):
        LinuxConfiguration.__init__(self, framework,
                                    basename=filename, nth="")

        self.cppflags = '/dev/null'
        self.source   = '/dev/null'
        self.kconfig  = filename

        if arch and subarch:
            self.arch, self.subarch = arch, subarch
        else:
            self.arch, self.subarch = kbuild.guess_arch_from_filename(filename)

    def write_config_h(self, dummy):
        pass

    def filename(self):
        return self.basename

    def call_makefile(self, target, extra_variables="", extra_env="", failok=False):
        # do not use the architecture set from framework, but the possibly
        # overriden one from the configuration. (i.e., handle subarch changes gracefully)
        return kbuild.call_linux_makefile(target, extra_variables=extra_variables,
                                          arch=self.arch, subarch=self.subarch,
                                          failok=failok)


class LinuxStdConfiguration(LinuxConfiguration):
    """
    This class creates a configuration object for a standard Linux
    configuration, such as 'allyesconfig' or 'allnoconfig'.

    Instantiating this class will not change the current working tree,
    immediately.
    """

    def __init__(self, framework, basename):
        assert framework.options.has_key('stdconfig')
        configuration = ".%s" % framework.options['stdconfig']
        LinuxConfiguration.__init__(self, framework,
                                    basename=basename, nth=configuration)

        self.cppflags = '/dev/null'
        self.source   = basename
        self.kconfig  = '.config.allyesconfig'

    def expand(self, verify=False):
        return self.expand_stdconfig()

    def get_cppflags(self):
        return ""

    def filename(self):
        return self.basename + '.' + self.framework.options['stdconfig']

    def __repr__(self):
        # This may look like a proper filename, but actually is fake
        return '%s.%s' % (self.source, self.framework.options['stdconfig'])


class BusyboxConfiguration(KbuildConfiguration):
    """
    This class represents a (partial) Busybox configuration.

    The expand method uses Kconfig to fill up the remaining
    variables. The parameter expansion_strategy of the __init__ method
    selects how partial configurations get expanded. In the default
    mode, 'defconfig', the strategy is to set the remaining variables
    to their Kconfig defined defaults. With 'allnoconfig', the strategy
    is to enable as few features as possible.

    The attribute 'model' of this class is allocated in the expand()
    method on demand.

    """
    def __init__(self, framework, basename, nth):
        KbuildConfiguration.__init__(self, framework, basename, nth)
        self.arch = 'busybox'
        self.subarch = 'busybox'

        if self.framework.options.has_key('expansion_strategy'):
            self.expansion_strategy = self.framework.options['expansion_strategy']
        else:
            self.expansion_strategy = 'allyesconfig'

    def __repr__(self):
        return '<BusyboxConfiguration "' + self.kconfig + '">'


class BusyboxPartialConfiguration(BusyboxConfiguration):
    """
    This class creates a configuration object for a partial Busybox
    Configuration. This works on arbitrary partial configurations, like
    "trolled" ones.

    NB: the self.cppflags and self.source is set to "/dev/null"
    """

    def __init__(self, framework, filename):
        BusyboxConfiguration.__init__(self, framework, basename=filename, nth="")

        self.cppflags = '/dev/null'
        self.source   = '/dev/null'
        self.kconfig  = filename

    def write_config_h(self, dummy):
        pass

    def filename(self):
        return self.basename


class BusyboxStdConfiguration(BusyboxConfiguration):
    """
    This class creates a configuration object for a standard Busybox
    configuration, such as 'allyesconfig' or 'allnoconfig'.

    Instantiating this class will not change the current working tree,
    immediately.
    """

    def __init__(self, framework, basename):
        assert framework.options.has_key('stdconfig')
        configuration = ".%s" % framework.options['stdconfig']
        BusyboxConfiguration.__init__(self, framework,
                                    basename=basename, nth=configuration)

        self.cppflags = '/dev/null'
        self.source   = basename
        self.kconfig  = '.config.allyesconfig'

    def expand(self, verify=False):
        return self.expand_stdconfig()

    def get_cppflags(self):
        return ""

    def filename(self):
        return self.basename + '.' + self.framework.options['stdconfig']

    def __repr__(self):
        # This may look like a proper filename, but actually is fake
        return '%s.%s' % (self.source, self.framework.options['stdconfig'])


class CorebootConfiguration(KbuildConfiguration):
    """
    This class represents a (partial) Coreboot configuration.

    The expand method uses Kconfig to fill up the remaining
    variables. The framework parameter of the __init__ method
    selects how partial configurations get expanded. In the default
    mode, 'allyesconfig', the strategy is to set all valid remaining variables
    to yes. With 'allnoconfig', the strategy is to enable as few features as
    possible.

    The attribute 'model' of this class is allocated in the expand()
    method on demand.

    """
    def __init__(self, framework, basename, nth):
        KbuildConfiguration.__init__(self, framework, basename, nth)
        self.arch = 'coreboot'
        if os.environ.has_key('SUBARCH'):
            self.subarch = os.environ['SUBARCH']
        else:
            self.subarch = "emulation/qemu-x86"

        if self.framework.options.has_key('expansion_strategy'):
            self.expansion_strategy = self.framework.options['expansion_strategy']
        else:
            self.expansion_strategy = 'allyesconfig'

    def __repr__(self):
        return '<CorebootConfiguration "' + self.kconfig + '">'

    def call_gcc(self, on_file):
        raise CheckerNotImplemented("call_gcc is not implemented yet")

    def call_spatch(self, on_file):
        raise CheckerNotImplemented("call_spatch is not implemented yet")

    def call_sparse(self, on_file):
        raise CheckerNotImplemented("call_sparse is not implemented yet")


class CorebootPartialConfiguration(CorebootConfiguration):
    """
    This class creates a configuration object for a partial Coreboot
    Configuration. This works on arbitrary partial configurations, like
    "trolled" ones.

    NB: the self.cppflags and self.source is set to "/dev/null"
    """

    def __init__(self, framework, filename):
        CorebootConfiguration.__init__(self, framework, basename=filename, nth="")

        self.cppflags = '/dev/null'
        self.source   = '/dev/null'
        self.kconfig  = filename

    def write_config_h(self, dummy):
        pass

    def filename(self):
        return self.basename


class CorebootStdConfiguration(CorebootConfiguration):
    """
    This class creates a configuration object for a standard Coreboot
    configuration, such as 'allyesconfig' or 'allnoconfig'.

    Instantiating this class will not change the current working tree,
    immediately.
    """

    def __init__(self, framework, basename):
        assert framework.options.has_key('stdconfig')
        configuration = ".%s" % framework.options['stdconfig']
        CorebootConfiguration.__init__(self, framework,
                                    basename=basename, nth=configuration)

        self.cppflags = '/dev/null'
        self.source   = basename
        self.kconfig  = '.config.allyesconfig'

    def expand(self, verify=False):
        return self.expand_stdconfig()

    def get_cppflags(self):
        return ""

    def filename(self):
        return self.basename + '.' + self.framework.options['stdconfig']

    def __repr__(self):
        # This may look like a proper filename, but actually is fake
        return '%s.%s' % (self.source, self.framework.options['stdconfig'])