summaryrefslogtreecommitdiffstats
path: root/src/build/tools/hwp_id.pl
blob: 24882aeea615d2b68fa722ecffffe72a2487434b (plain)
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
#!/usr/bin/perl
# IBM_PROLOG_BEGIN_TAG
# This is an automatically generated prolog.
#
# $Source: src/build/tools/hwp_id.pl $
#
# IBM CONFIDENTIAL
#
# COPYRIGHT International Business Machines Corp. 2012,2014
#
# p1
#
# Object Code Only (OCO) source materials
# Licensed Internal Code Source Materials
# IBM HostBoot Licensed Internal Code
#
# The source code for this program is not published or otherwise
# divested of its trade secrets, irrespective of what has been
# deposited with the U.S. Copyright Office.
#
# Origin: 30
#
# IBM_PROLOG_END_TAG

use strict;
use File::Find ();
use File::Path;
use Cwd;

# Variables
my $DEBUG = 0;
my @outputFnVn;
my @foundFn;
my $baseDir = ".";
my $basePath;
my @searchFiles;
my @searchDirs;

my $SHOW_INFO = 0;
# a bit for each:
use constant SHOW_IMAGEID    => 0x01;
use constant SHOW_MISSING    => 0x02;
use constant SHOW_VERSION    => 0x04;
use constant SHOW_SHORT      => 0x08;
use constant SHOW_FULLPATH   => 0x10;
use constant SHOW_HTML       => 0x20;
use constant SHOW_ONLYMISS   => 0x40;

# directories that we'll check for files:
my @dirList = (
    "src/usr/hwpf",                 # hostboot
    "src/include/usr/hwpf",         # hostboot
    "src/usr/pore/poreve/model",    # hostboot
    "src/hwsv/server/hwpf/hwp",     # fsp, should be full tree
    "src/base.pgm/HostServices/hwpf/hwp",       # hostservices
    "src/base.pgm/HostServices/hwpf/shared_hwp",# hostservices
    "src/base.pgm/Hypervisor/Slw",              # hostservices
    ) ;

# set defaults
my $imageId = "";
$SHOW_INFO = SHOW_VERSION;

while( $ARGV = shift )
{
    if( $ARGV =~ m/-h/ )
    {
        usage();
    }
    elsif( $ARGV =~ m/-D/ )
    {
        if ( $baseDir = shift )
        {
            print("Using directory(s): $baseDir\n");
        }
        else
        {
            usage();
        }
    }
    elsif( $ARGV =~ m/-d/ )
    {
        $DEBUG = 1;
    }
    elsif( $ARGV =~ m/-f/ )
    {
        $SHOW_INFO |= SHOW_FULLPATH;
    }
    elsif( $ARGV =~ m/-F/ )
    {
        # no directory, list of files
        $baseDir = "";
        @searchFiles = @ARGV;
        last; # done with options
    }
    elsif( $ARGV =~ m/-I/ )
    {
        $SHOW_INFO |= SHOW_IMAGEID;
        if ( $imageId = shift )
        {
            debugMsg("using supplied Hostboot version: $imageId\n");
        }
        else
        {
            usage();
        }
    }
    elsif( $ARGV =~ m/-i/ )
    {
        $SHOW_INFO |= SHOW_IMAGEID;
    }
    elsif( $ARGV =~ m/-l/ )
    {
        $SHOW_INFO |= SHOW_HTML;
        $SHOW_INFO &= ~SHOW_VERSION;
        $SHOW_INFO &= ~SHOW_SHORT;
    }
    elsif( $ARGV =~ m/-M/ )
    {
        $SHOW_INFO |= SHOW_ONLYMISS;
    }
    elsif( $ARGV =~ m/-m/ )
    {
        $SHOW_INFO |= SHOW_MISSING;
    }
    elsif( $ARGV =~ m/-s/ )
    {
        $SHOW_INFO |= SHOW_SHORT;
        $SHOW_INFO &= ~SHOW_VERSION;
        $SHOW_INFO &= ~SHOW_HTML;
    }
    elsif( $ARGV =~ m/-v/ )
    {
        $SHOW_INFO |= SHOW_VERSION;
        $SHOW_INFO &= ~SHOW_SHORT;
        $SHOW_INFO &= ~SHOW_HTML;
    }
    else
    {
        usage();
    }
}

if ($SHOW_INFO & SHOW_ONLYMISS)
{
    $SHOW_INFO &= ~SHOW_VERSION;
    $SHOW_INFO &= ~SHOW_SHORT;
    $SHOW_INFO &= ~SHOW_HTML;
}

# generate starting html if needed
if ($SHOW_INFO & SHOW_HTML)
{
    print "<html>\n";
    print "    <head><title>HWP names and version IDs</title></head>\n";
    print <<STYLESHEET;
    <style type="text/css">
        table.hwp_id {
            border-width: 1px;
            border-spacing: 2px;
            border-style: outset;
            border-color: gray;
            border-collapse: separate;
            background-color: white;
        }
        table.hwp_id th {
            border-width: 1px;
            padding: 1px;
            border-style: inset;
            border-color: gray;
            background-color: white;
        }
        table.hwp_id td {
            border-width: 1px;
            padding: 1px;
            border-style: inset;
            border-color: gray;
            background-color: white;
        }
    </style>
STYLESHEET
    print "    <body>\n";
}

# determine what the hbi_ImageId would be, if we were asked to display that
if ($SHOW_INFO & SHOW_IMAGEID)
{
    if ($imageId eq "")
    {
        # copied from src/build/tools/addimgid:
        $imageId = `cd $baseDir; git describe --dirty || echo Unknown-Image \`git rev-parse --short HEAD\``;
        chomp $imageId;
        if (($imageId =~ m/Unknown-Image/) ||   # Couldn't find git describe tag.
            ($imageId =~ m/dirty/) ||           # Find 'dirty' commit.
            ($imageId =~ m/^.{15}-[1-9]+/))     # Found commits after a tag.
        {
            $imageId = $imageId."/".$ENV{"USER"};
        }
    }
    if ($SHOW_INFO & SHOW_HTML)
    {
        print "<h1>Hostboot version: $imageId</h1>\n";
    }
    else
    {
        print("Hostboot version: $imageId\n");
    }
}

# if baseDir - recurse into directories
if ($baseDir)
{
    # there may be multiple base directories
    @searchDirs = split(/:/, $baseDir);

    foreach( @searchDirs )
    {
        # make sure we're in the correct place
        chdir "$_";
        $basePath = $_;

        # do the work - for each directory, check the files...
        foreach( @dirList )
        {
            @outputFnVn = ();
            checkDirs( $_ );

            if (scalar(@outputFnVn) > 0)
            {
                outputFileInfo($_, @outputFnVn);
            }
        }
    }
}
else # list of files
{
    @outputFnVn = ();

    # do the work - for each file, check it
    foreach( @searchFiles )
    {
        findIdVersion( $_ );
    }

    if (scalar(@outputFnVn) > 0)
    {
        my $pwd = getcwd();
        outputFileInfo($pwd, @outputFnVn);
    }
}

# generate closing html if needed
if ($SHOW_INFO & SHOW_HTML)
{
    print "    </body>\n";
    print "</html>\n";
}

#=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
#  End of Main program
#=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=

################################################################################
#
# Print debug messages if $DEBUG is enabled.
#
################################################################################

sub debugMsg
{
    my ($msg) = @_;
    if( $DEBUG )
    {
        print "DEBUG: $msg\n";
    }
}

################################################################################
#
# outputFileInfo - Print output, as options dictate
#
################################################################################

sub outputFileInfo
{
    my $dir = shift;

    if ($SHOW_INFO & SHOW_HTML)
    {
        print("<h2>HWP files in $basePath/$dir</h2>\n");
    }
    else
    {
        print("[HWP files in $dir]\n");
    }

    if ($SHOW_INFO & SHOW_SHORT)
    {
        print("[Procedure,Revision]\n" );
    }

    if ($SHOW_INFO & SHOW_HTML)
    {
        print "<table class='hwp_id'>\n";
        print "    <tr>\n";
        print "        <th>Filename</th>\n";
        print "        <th>Version</th>\n";
        print "    </tr>\n";
    }

    foreach( sort(@_) )
    {
        print( "$_\n" );
    }

    if ($SHOW_INFO & SHOW_HTML)
    {
        print "</table>\n";
    }
}

################################################################################
#
# findIdVersion - prints out filename and version from the $Id: string.
#
################################################################################

sub findIdVersion
{
    my ($l_file) = @_;
    debugMsg( "finding Id & Version from file: $l_file" );

    local *FH;
    open(FH, "$l_file") or die("Cannot open: $l_file: $!");
    my $data;
    read(FH, $data, -s FH) or die("Error reading $l_file: $!");
    close FH;

    # look for special string to skip file
    if ($data =~ /HWP_IGNORE_VERSION_CHECK/ )
    {
        debugMsg( "findIdVersion: found HWP_IGNORE_VERSION_CHECK in: $l_file" );
        next;
    }

    # look for
    # $Id: - means this IS an hwp - print version and continue
    # else - missing!
    if ($data =~ /\$Id: (.*),v ([0-9.]*) .* \$/mgo )
    {
        my $fn = $1; # filename
        my $vn = $2; # version
        my $display_name;
        my $redundant = 0;
        if ($SHOW_INFO & SHOW_FULLPATH)
        {
            $display_name = $l_file;
        }
        else
        {
            $display_name = $fn;
        }
        $redundant = grep { m/^$fn$/ } @foundFn;
        if ( !$redundant )
        {
            push( @foundFn, $display_name );
            debugMsg( "File: $display_name  Version: $vn" );
            if ($SHOW_INFO & SHOW_VERSION)
            {
                push( @outputFnVn, "File: $display_name  Version: $vn" );
            }
            elsif ($SHOW_INFO & SHOW_SHORT)
            {
                push( @outputFnVn, "$display_name,$vn" );
            }
            elsif ($SHOW_INFO & SHOW_HTML)
            {
                push( @outputFnVn, "<tr><td>$display_name</td><td>$vn</td></tr>" );
            }
        }
    }
    else
    {
        debugMsg( "findIdVersion: MISSING \$Id tag: $l_file" );
        if ($SHOW_INFO & SHOW_MISSING)
        {
            if ($SHOW_INFO & SHOW_VERSION)
            {
                print( "File: $l_file  Version: \$Id is MISSING\n" );
            }
            elsif ($SHOW_INFO & SHOW_SHORT)
            {
                print( "$l_file,MISSING\n" );
            }
            elsif ($SHOW_INFO & SHOW_HTML)
            {
                print( "<tr><td>$l_file</td><td>\$Id is MISSING</td></tr>\n" );
            }
        }
        elsif ($SHOW_INFO & SHOW_ONLYMISS)
        {
            print( "File: $l_file  Version: \$Id is MISSING\n" );
        }
    }
}

################################################################################
#
# checkDirs - find hwp files that should contain $Id:
#  filetypes .C .c .H .h .xml .define .initfile .attributes .pl
# and prints out their filename and version from the $Id: string.
# This recursively searches the input directory passed in for all files.
#
################################################################################

sub checkDirs
{
    my ($l_input_dir) = @_;

    debugMsg( "Getting Files for dir: $l_input_dir" );

    # Open the directory and read all entry names.

    local *DH;
    opendir(DH, $l_input_dir) ;#or die("Cannot open $l_input_dir: $!");
    # skip the dots
    my @dir_entry;
    @dir_entry = grep { !/^\./ } readdir(DH);
    closedir(DH);
    while (@dir_entry)
    {
        my $l_entry = shift(@dir_entry);
        my $full_path = "$l_input_dir/$l_entry";

        debugMsg( "checkDirs: Full Path: $full_path" );

        # if this is valid file:
        if (($l_entry =~ /\.[H|h|C|c]$/) ||
            ($l_entry =~ /\.xml$/) ||
            ($l_entry =~ /\.define$/) ||
            ($l_entry =~ /\.attributes$/) ||
            ($l_entry =~ /\.initfile$/) ||
            ($l_entry =~ /\.pl$/))
        {
            findIdVersion($full_path);
        }
        # else if this is a directory
        elsif (-d $full_path)
        {
            # recursive here
            checkDirs($full_path);
        }
        # else we ignore the file.
    }
}

################################################################################
#
# Print the Usage message
#
################################################################################

sub usage
{
    print "Usage: $0 <option> [-F <files>]\n";
    print "\n";
    print "Default - show name and version for hwp files with \$Id string.\n";
    print "-D dirs   Use dir as top of build, may be ':' separated list.\n";
    print "-d        Enable Debug messages.\n";
    print "-f        Show full pathname of all files.\n";
    print "-F files  Search listed full-path files. Must be last parameter.\n";
    print "-h        Display usage message.\n";
    print "-I lvl    Show hostboot ImageId value as supplied lvl\n";
    print "-i        Show hostboot ImageId value.\n";
    print "-m        Include files that are missing Id strings.\n";
    print "\n";
    print " output is in one of 4 formats:\n";
    print "-l        Output in html table.\n";
    print "-s        Show short \"filename,version\" format.\n";
    print "-v        Show longer \"File: f Version: v\" format. (default)\n";
    print "-M        Only show files that are missing Id strings.\n";
    print "\n";
    exit 1;
}
OpenPOWER on IntegriCloud