Scroll to navigation

Lintian::Deb822::Parser(3) Debian Package Checker Lintian::Deb822::Parser(3)

NAME

Lintian::Deb822::Parser - Lintian's generic Deb822 parser functions

SYNOPSIS

 use Lintian::Deb822::Parser qw(read_dpkg_control);
 
 my (@paragraphs);
 eval { @paragraphs = read_dpkg_control('some/debian/ctrl/file'); };
 if ($@) {
    # syntax error etc.
    die encode_utf8("ctrl/file: $@");
 }
 
 foreach my $para (@paragraphs) {
    my $value = $para->{'some-field'};
    if (defined $value) {
        # ...
    }
 }

DESCRIPTION

This module contains a number of utility subs that are nice to have, but on their own did not warrant their own module.

Most subs are imported only on request.

Debian control parsers

At first glance, this module appears to contain several debian control parsers. In practise, there is only one real parser ("visit_dpkg_paragraph_string") - the rest are convenience functions around it.

You have a debian control file (such debian/control) and you want a number of paragraphs from it.

CONSTANTS

The following constants can be passed to the Debian control file parser functions to alter their parsing flag.

The file should be parsed as debconf template. These have slightly syntax rules for whitespace in some cases.
The file do not allow comments. With this flag, any comment in the file is considered a syntax error.

FUNCTIONS

This is a convenience function to ease using "parse_dpkg_control" with paths to files (rather than open handles). The first argument must be the path to a FILE, which should be read as a debian control file. If the file is empty, an empty list is returned.

Otherwise, this behaves like:

 use autodie;
 
 open(my $fd, '<:encoding(UTF-8)', FILE); # or '<'
 my @p = parse_dpkg_control($fd, FLAGS, LINES);
 close($fd);
 return @p;
    

This goes without saying that may fail with any of the messages that "parse_dpkg_control(HANDLE[, FLAGS[, LINES]])" do. It can also emit autodie exceptions if open or close fails.

Reads debian control data from STRING and returns a list of paragraphs in it. A paragraph is represented via a hashref, which maps (lower cased) field names to their values.

FLAGS (if given) is a bitmask of the DCTRL_* constants. Please refer to "CONSTANTS" for the list of constants and their meaning. The default value for FLAGS is 0.

If LINES is given, it should be a reference to an empty list. On return, LINES will be populated with a hashref for each paragraph (in the same order as the returned list). Each hashref will also have a special key "START-OF-PARAGRAPH" that gives the line number of the first field in that paragraph. These hashrefs will map the field name of the given paragraph to the line number where the field name appeared.

This is a convenience sub around "visit_dpkg_paragraph" and can therefore produce the same errors as it. Please see "visit_dpkg_paragraph" for the finer semantics of how the control file is parsed.

NB: parse_dpkg_control does not close the handle for the caller.

Reads debian control data from STRING and passes each paragraph to CODE. A paragraph is represented via a hashref, which maps (lower cased) field names to their values.

FLAGS (if given) is a bitmask of the DCTRL_* constants. Please refer to "CONSTANTS" for the list of constants and their meaning. The default value for FLAGS is 0.

If the file is empty (i.e. it contains no paragraphs), the method will contain an empty list. The deb822 contents may be inside a signed PGP message with a signature.

visit_dpkg_paragraph will require the PGP headers to be correct (if present) and require that the entire file is covered by the signature. However, it will not validate the signature (in fact, the contents of the PGP SIGNATURE part can be empty). The signature should be validated separately.

visit_dpkg_paragraph will pass paragraphs to CODE as they are completed. If CODE can process the paragraphs as they are seen, very large control files can be processed without keeping all the paragraphs in memory.

As a consequence of how the file is parsed, CODE may be passed a number of (valid) paragraphs before parsing is stopped due to a syntax error.

NB: visit_dpkg_paragraph does not close the handle for the caller.

CODE is expected to be a callable reference (e.g. a sub) and will be invoked as the following:

The first argument, PARA, is a hashref to the most recent paragraph parsed. The second argument, LINE_NUMBERS, is a hashref mapping each of the field names to the line number where the field name appeared. LINE_NUMBERS will also have a special key "START-OF-PARAGRAPH" that gives the line number of the first field in that paragraph.

The return value of CODE is ignored.

If the CODE invokes die (or similar) the error is propagated to the caller.

On syntax errors, visit_dpkg_paragraph will call die with the following string:

  "syntax error at line %d: %s\n"

Where %d is the line number of the issue and %s is one of:

The field appeared twice in the paragraph.
A continuation line appears outside a paragraph - usually caused by an unintended empty line before it.
An empty continuation line was found. This usually means that a period is missing to denote an "empty line" in (e.g.) the long description of a package.
Generic error containing the text of the line that confused the parser. Note that all non-printables in %s will be replaced by underscores.
A comment line appeared and FLAGS contained DCTRL_NO_COMMENTS.
A "BEGIN PGP SIGNATURE" header is seen and a "BEGIN PGP MESSAGE" has not been seen yet.
Two "BEGIN PGP SIGNATURE" headers are seen in the same file.
A valid PGP header appears (e.g. "BEGIN PUBLIC KEY BLOCK").
An invalid or malformed PGP header appears.
Two "BEGIN PGP MESSAGE" headers appears in the same message.
The file ended after a "BEGIN PGP SIGNATURE" header without being followed by an "END PGP SIGNATURE".
The file had content before PGP MESSAGE.
The file had data after the PGP SIGNATURE block ended.
The file had a "BEGIN PGP MESSAGE" header, but no signature was present.

SEE ALSO

lintian(1)

2021-11-01 Lintian v2.111.0~bpo11+1