Page MenuHomeFreeBSD

DDB operators patch
ClosedPublic

Authored by pfg on Nov 20 2015, 9:14 AM.
Tags
None
Referenced Files
Unknown Object (File)
Tue, Oct 1, 2:01 PM
Unknown Object (File)
Mon, Sep 30, 9:02 PM
Unknown Object (File)
Mon, Sep 30, 4:18 AM
Unknown Object (File)
Wed, Sep 18, 2:49 PM
Unknown Object (File)
Wed, Sep 18, 11:31 AM
Unknown Object (File)
Wed, Sep 18, 4:20 AM
Unknown Object (File)
Tue, Sep 17, 6:34 AM
Unknown Object (File)
Tue, Sep 17, 1:27 AM
Subscribers

Details

Reviewers
dan_partelly_rdsor.ro
adrian
Group Reviewers
Src Committers
Summary

a patch I made almost 2 years ago which adds a bunch of new operators to DDB command language. I used back then to debug an issue I had with a network driver, but the intent of the code alays was to be the first pass towards supporting conditional breakpoint in DDB

Diff Detail

Repository
rS FreeBSD src repository - subversion
Lint
Lint Passed
Unit
No Test Coverage
Build Status
Buildable 3605
Build 3645: arc lint + arc unit

Event Timeline

dan_partelly_rdsor.ro retitled this revision from to DDB operators patch.
dan_partelly_rdsor.ro updated this object.
dan_partelly_rdsor.ro edited the test plan for this revision. (Show Details)

I did some cleanups that were incorporated but I didn't test it.
We should push it for FreeBSD 11, I think.

jhb added inline comments.
sys/ddb/db_expr.c
213

This seems like a mismerge, and it also seems better served by using a switch with cases instead?

@jhb true. Ill convert it to a case and fix the issue. I can also apply it on current and test it there. Once its fixed, what is the prefered course of action ?

@jhb true. Ill convert it to a case and fix the issue. I can also apply it on current and test it there. Once its fixed, what is the prefered course of action ?

Just update it. As soon as it gets some positive review it will get committed.

  1. Updating D4230: DDB operators patch #
  2. Enter a brief description of the changes included in this update.
  3. The first line is used as subject, next lines as comment. #
  4. If you intended to create a new revision, use:
  5. $ arc diff --create

Applied the patch the current, previously it was applied to a very old version
Changed db_add_expr function to use case statements
Fixed what I considered to be a bug in how db_print_cmd handles print formats.
Previously an incorrect format specifier whould not be cought and the invalid
specifier saved in db_print_format global varibale, altering in a unwanted way
the behaviour of subsequent calls to db_printf

kernel compiled cleanly after the patch was applied

I have a complementary enhancement from DragonFly: D6146

It would be really nice to document the new features (not sure where).

pfg added a reviewer: dan_partelly_rdsor.ro.

Now that the ddb examine (x) command changes are in, I would like to bring this change. It would be a step forward for FBSD 11.

There are some stray spaces which I will fix soon.

It would be good to document the expression syntax in ddb(4) if possible. For example, that would be the best place to mention that >> assumes unsigned.

sys/ddb/db_expr.c
63

It would be good to avoid mixing whitespace changes in. We can always fix those as a followup if needed, but this obscures the diff. Alternatively, you could reindent this function to match the rest of the file first and then update this diff so it just includes the functional changes.

101

On the one hand I appreciate the more verbose syntax error messages (and I probably come down on the side of keeping them). On the other hand, having a single string saves a small amount of space in the kernel .rodata section.

177

Inconsistent indentation here.

231

Ah, if you used this here, you could use this above in db_mult_expr() as well to pacify others who are worried about the space bloat of verbose error messages. :)

For example:

db_printf("Expression syntax error after '%c'\n", '!');
242

Perhaps use 'default' here to pacify compiler warnings about unused cases that aren't actually possible?

261

Indentation.

300

If we're going the space-savings route, then perhaps use strings instead of characters for the argument:

db_error("Expression syntax error after '%s'\n", "&&");

Note that this use would mean using the same quotes in all cases, but I think that the consistency of that would be worth it.

sys/ddb/db_lex.h
39

This is actually permitted in style(9), so I would leave this be.

Attempt to reduce diff.
Address some of jhb's concerns.

pfg marked 4 inline comments as done.

More updates:

Attempt to maintain existing Mach format.

pfg marked an inline comment as done.May 3 2016, 5:25 PM

I haven't figure out the strings yet.

sys/ddb/db_expr.c
242

I think this corresponded to line 220, where I added

	__unreachable();

now.

sys/ddb/db_expr.c
242

Yes. There's another one around 301 as well.

Im still learning the FreeBSD style, Ill be more careful next time with indentation and spaces. Meanwhile, if I have some questions on
style , can I mail you Pedro ? About documenting, yes maybe next week I could work on man page, but it will have to wait untill then.

Im still learning the FreeBSD style, Ill be more careful next time with indentation and spaces. Meanwhile, if I have some questions on
style , can I mail you Pedro ? About documenting, yes maybe next week I could work on man page, but it will have to wait untill then.

Don't worry, this is how we learn it (unfortunately) and they are easily addressed.

pfg marked an inline comment as done.May 3 2016, 8:53 PM

Im still learning the FreeBSD style, Ill be more careful next time with indentation and spaces. Meanwhile, if I have some questions on
style , can I mail you Pedro ?

Well, this is not style(9), the code originated in Mach so we are respecting the previous style in order to minimize the differences. We probably should reformat this but the other BSDs have some interesting changes as well.

No problem about mailing me, except that I may take a while to reply.

pfg edited edge metadata.
  • Add extra __unreachable()
  • Make strings consistent

*untested*

Fix compilation.

Not sure if this is the correct approach but since db_error() doesn't
let me print messages with extra characters, I use db_printf()
followed by a db_error(NULL).

Not sure what db_print_format() does (?).

In D4230#131942, @pfg wrote:

...

Not sure what db_print_format() does (?).

Nevermind .. I opengroked it.

sync with current (the x/a option change was reverted).

Dan ..

Were these supposed to come from Mach? I can't find them in Mach3 or in Darwin. Just curious.

@Pedro. Yes, Pedro , they where brought over from a Mach kernel. I believe it was 3.0 . Then applied some bug fixes on the recursive parser.

Pedro, you asked for licensing reasons too ? Should I try to find exactly the version I used ?

Pedro, you asked for licensing reasons too ? Should I try to find exactly the version I used ?

No licensing issue. I was wondering about the convenience of the grammar. Once we add functions we cannot really take them back. Having the historical backing helps.

OTOH, I won't commit it until someone else approves it.

adrian edited edge metadata.

i'm okay with this. thanks for being so patient!

This revision is now accepted and ready to land.May 10 2016, 4:00 PM

OK.. I've waited some prudential time but it's time to commit this.
Still pending are the documentation updates(?).

@Pedro, this weekend I reserved time for doc updates

This was committed as r299970.