ServerSideHooks

Differences between revisions 2 and 17 (spanning 15 versions)
Revision 2 as of 2012-12-04 12:01:26
Size: 5791
Editor: ev
Comment: Clean up the compression section
Revision 17 as of 2012-12-07 17:03:41
Size: 11473
Editor: ev
Comment:
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
||<#FF0000>'''TODO: Resolve how we use hooks to rebucket crashes to library packages on the server, or if that's implemented separate from this.'''||
Line 3: Line 5:
What does a developer do when a stack trace is not enough to completely debug an issue? They could find a user who is experiencing this problem and contact them, asking them to provide additional information. This is time consuming though. What does a developer do when a stack trace is not enough to completely debug an issue? They could find a user who is experiencing this problem and contact them, asking them to provide additional information. This is very time consuming and fraught with long delays.
Line 5: Line 7:
A developer should be able to identify an issue that needs additional information, write a small amount of code to collect this on a system exhibiting the problem, and quickly get that run on such systems. This code should require no human interaction and should report back quickly. A developer should be able to identify an issue that needs additional information, write a small amount of code to collect additional details on a system exhibiting the problem, and quickly get that run on such systems. This code should require no human interaction and should report back quickly, notifying the developer when there is something actionable.
Line 11: Line 13:
 * Downloading seems safe.
 * Uploading
  * Mirror package uploading permissions to keep the same model we have today?
   * Query LP ACLs
   * Or we can keep it simple for now and restrict it to ~core-dev
 * Whoopsie needs to check the SSL certificate (strict server checking in libcurl)
Whoopsie needs to check that the SSL certificate matches. There is a strict checking option in libcurl for this. With that in place, downloading and uploading should be safe.

We will restrict the set of users who can create new hooks to the members of ~core-dev. In the future we can expand this by querying the Launchpad ACLs for the per-package upload rights and match these to the respective binary packages in the Error Tracker.
Line 19: Line 18:
Would like some other core dev to at least review it. You get some pressure to fix this urgently and you rush something out.
Line 21: Line 19:
=== Non-interactive ===
 * How do we avoid password prompts?
  * One way would be a privileged apport dbus service that always services requests from the admin group.
  * Apport now uses pkexec rather than gksu.
 * We need to prevent hooks from running arbitrary code as root.
  * Not arbitrary code. We’re trusting the same group of developers as the archive (~core-dev).
   * attach_root_command maps to com.ubuntu.apport.package-hook
   * Martin will have a think about this.
Pressure is often put on developers to fix issues urgently and sometimes they rush changes out. Poorly-coded hooks have the potential to consume system resources in a manner that adversely affects the user experience.

New package hooks or changes to existing ones will require review from at least two other core developers.

== Non-interactive ==

Reporting errors in Ubuntu is simple by design.

If the dialogs were particularly complex or if they asked a series of questions, users would be less willing to work through them to submit reports to us. One bad dialog will leave a lasting impression that will make users hesitant when prompted the next time.

Interactive questions are also more often than not poorly worded for the audience. A current sampling of apport package hooks includes:
"Apport has detected a possible GPU hang. Did your system recently lock up and/or require a hard reboot?"
"It seems you have modified the contents of /etc/cups/cupsd.conf. Would you like to add the contents of it to your bug report?"

Because there is no guarantee that an Internet connection is available at the time of a crash, apport collects what information it can and hands the error reports off to whoopsie to be sent when possible. It is from this point that interactivity stops. If an internet connect appeared even just a few moments later it would already be far too late to ask the user additional questions. Anything more than 10 seconds would be unreasonable.

=== Security ===
<<Anchor(non-interactive-security)>>
Some package hooks will need to be able to attach files not normally viewable by a regular user or attach the output of a command as root. xorg needs to attach the contents of {{{/var/log/lightdm}}}. update-manager needs to attach the current dmsesg. Plymouth needs to attach {{{/var/log/plymouth-debug.log}}}.

At present, apport uses pkexec to present a password dialog in these cases. While this is an improvement over the previous gksu-based implementation in that it allows us to set more password dialog text, providing some context as to why the user is suddenly seeing this dialog, it is still abrupt.

This presents an interesting problem.

We cannot wait until the hook is run to show these authentication dialogs. It will likely be far more than 10 seconds after the initial error dialog was presented, and could be hours or days later, depending on when the user next connects to the Internet.

One option is to map attach_root_command_outputs to a new com.ubuntu.apport.package-hook PolicyKit permission that is granted to the whoopsie user. While this means the hook mechanism is able to run remote code as root, it is restricted to code from the same group of developers that can modify maintainer scripts in all of the Ubuntu packages (~core-dev). Still, users can run apt in --download-only mode and review the code to be run before installing a package. They cannot review a server-side hook before running it.

For the time being, we will limit hooks to only running with regular user permissions.

We will need to find a way for whoopsie to run code as the user the crash occurred for, or grant sufficient permissions to whoopsie so that it can access the user's files. Whoopsie will need to be able to write to the reports in {{{/var/crash}}}.
Line 31: Line 52:
 * Need to sort out ~canonical not working with SSO in errors.ubuntu.com first ([[http://pad.lv/1073466|1073466]])
 * Web UI restricted to ~core-dev.
 * Need UI for peer review system.

{{attachment:new-hook-mockup.jpg}}

We will soon restrict access to sensitive information on https://errors.ubuntu.com to just ~canonical-ubuntu-platform ([[http://pad.lv/1087361|1087361]]). It logically follows that the interface for modifying server-side hooks will also be restricted to this set of users.
Line 36: Line 58:
 * Per-problem hook (by SAS). How do we map all the SASes to the signature?
 * Package level hook
 * We're purposefully leaving out global, problem type-specific hooks for now as these should ideally live in the apport package.
Line 40: Line 59:
== Keeping existing hooks for ubuntu-bug ==
 * Fix bug whereby existing hooks are running on released versions ([[http://pad.lv/1084979|1084979]])
 * Keep daisy hooks on the apport-gtk path, run existing hooks on ubuntu-bug path
 * SRU whoopsie and apport for server-side hook changes
Hooks will be applied in one of two locations.

The first option is to set a hook at the problem level, as keyed by the crash or duplicate signature. We will need to maintain a mapping between the StacktraceAddressSignature on the client and the crash signature on the server. This may need to account for a duplicate signature as generated on server-side mapping (as used by developers to combine or split apart buckets) back to a StacktraceAddressSignature on the client. This should be straightforward as the server already needs to maintain this mapping to identify when it should request a core file.

The hooks can also be set at the package level, where they will be run for any crash of the given package.

We're purposefully leaving out global, problem type-specific hooks for now as these should ideally live in the apport package.

== Modification from existing behaviour ==

We will leave in place the existing packaged package-hooks for now, taking care to fix the bug whereby they are run on released versions ([[http://pad.lv/1084979|1084979]]). However, we will only run these when creating a bug report through the {{{ubuntu-bug}}} command, not when processing a {{{.crash}}} file with apport-gtk.

We will SRU whoopsie and apport for the server-side hook changes.
Line 45: Line 74:
 * quantity (if we received this 10 times, stop)
 * timeout (it is still running code, so after a week stop collecting)
 * Both quantity and timeout are editable fields with upper bounds
 * not-editable disk size upper bound (hooks can only include X MB)
 * Disable the hook once it hits the upper size bound. If the hook hits this while receiving data from the client, drop the connection and disable the hook.
 * We also need a disk upper bound on the client side, just in case. 50MB or so?

We will support two types of editable expiration fields: quantity (how many times have we received one of these reports?) and timeout (how many days has the hook been available for?). The sum of the reports reaching the value of one of fields will cause further collection to stop with the hook disabled. If this happens while a client is sending data for the hook, the connection will be dropped and the hook automatically disabled.

Both of these fields will have upper bounds for valid values. Developers will not be able to collect thousands of reports or run the hook for months.

There will be a third, non-editable field, for the amount of disk space the sum of the reports can use. In extreme cases, a database administrator should be able to override this field for individual hooks.

There will be a hardcoded upper limit on the client for disk usage, just to be safe. This is likely to be 50MB or less.
Line 54: Line 85:
 * They'll live in the HookOOPS CF. Needs to refer back to the original OOPS. Only the Package, Dependencies, and DuplicateSignature fields can be modified. This is so the hooks can effectively reassign the crash to a library. Modifications to any other field will be ignored.

HookResults
||bucket ID or package || Package || BiscuitCount || BiscuitType ||
|| || omnomnom || 3 || Jaffa Cakes ||

 * They'll live in the {{{HookResults}}} CF. Needs to refer back to the original OOPS.
Line 79: Line 116:
Whoopsie gets a few hooks, downloads them, runs them with the python-apport code to update the report, sends the new keys in the report back (not any existing or modified), report gets written to a new CF Whoopsie gets a few hooks, downloads them, runs them with the python-apport code to update the report, sends the new keys in the report back (not any existing or modified), report gets written to the HookResults CF
Line 81: Line 118:
== Static analysis / error handling and sending that back == == Error handling ==
Line 83: Line 120:
Include the exception from the hook as a new field. Send that to daisy. Daisy uses the presence of this field to indicate a failed hook. If a hook fails, the exception from the hook will be sent as a new field along with the other fields generated by the hook up until the point of failure. Daisy will write these into the new {{{HookResults Column Family}}} to indicate a failure of that hook.
Line 85: Line 122:
Failed hooks should send an alert to the hook creator via SMS (mup). Failed hooks will send an alert to the hook creator via SMS (mup) or email.
Line 88: Line 125:
Report of active hooks would be useful. Page on these are the hooks running now with expiry date and the number of reports they’ve received, also the size of the data that’s been transmitted to us from those hooks.
Line 90: Line 126:
We should record by day hook usage statistics (active, inactive, working, failed) to determine whether or not the hook mechanism is actually being used and working. A new page will be added to https://errors.ubuntu.com that provides a report of hook usage.

This will include:
 * Active hooks with their expiry date. For each of the hooks, the number of reports received and the size of data transmitted so far will be included.
 *
We will also record by day hook usage statistics (active, inactive, working, failed) to determine whether or not the hook mechanism is actually being used and working.
Line 94: Line 134:

== Launchpad bugs ==

A new checkbox is added in the server-side hooks UI for “Get someone to file this on Launchpad”. This is checked by apport via an api on daisy, where it asks if we want LP bugs for the SAS for which the report is about. If the answer is yes, then we create a LP bug with a specific errors.ubuntu.com tag that crash-digger is looking for and the SAS (attachment?). Crash-digger then finds this, looks up the SAS in daisy.ubuntu.com and gets the crash signature back. It then writes the errors.ubuntu.com URL for that bucket into the bug and tells daisy to send off a notification that the server-side hook now has a LP bug. (and updates the BugToCrashSignatures CF)

This will let us mostly turn off retracing of Launchpad crashes.

TODO: Resolve how we use hooks to rebucket crashes to library packages on the server, or if that's implemented separate from this.

Rationale

What does a developer do when a stack trace is not enough to completely debug an issue? They could find a user who is experiencing this problem and contact them, asking them to provide additional information. This is very time consuming and fraught with long delays.

A developer should be able to identify an issue that needs additional information, write a small amount of code to collect additional details on a system exhibiting the problem, and quickly get that run on such systems. This code should require no human interaction and should report back quickly, notifying the developer when there is something actionable.

Security

Both daisy.ubuntu.com and errors.ubuntu.com are signed with the Ubuntu certificate from Go Daddy. This certificate is included by default in the ssl-certs package.

Whoopsie needs to check that the SSL certificate matches. There is a strict checking option in libcurl for this. With that in place, downloading and uploading should be safe.

We will restrict the set of users who can create new hooks to the members of ~core-dev. In the future we can expand this by querying the Launchpad ACLs for the per-package upload rights and match these to the respective binary packages in the Error Tracker.

Peer review

Pressure is often put on developers to fix issues urgently and sometimes they rush changes out. Poorly-coded hooks have the potential to consume system resources in a manner that adversely affects the user experience.

New package hooks or changes to existing ones will require review from at least two other core developers.

Non-interactive

Reporting errors in Ubuntu is simple by design.

If the dialogs were particularly complex or if they asked a series of questions, users would be less willing to work through them to submit reports to us. One bad dialog will leave a lasting impression that will make users hesitant when prompted the next time.

Interactive questions are also more often than not poorly worded for the audience. A current sampling of apport package hooks includes: "Apport has detected a possible GPU hang. Did your system recently lock up and/or require a hard reboot?" "It seems you have modified the contents of /etc/cups/cupsd.conf. Would you like to add the contents of it to your bug report?"

Because there is no guarantee that an Internet connection is available at the time of a crash, apport collects what information it can and hands the error reports off to whoopsie to be sent when possible. It is from this point that interactivity stops. If an internet connect appeared even just a few moments later it would already be far too late to ask the user additional questions. Anything more than 10 seconds would be unreasonable.

Security

Some package hooks will need to be able to attach files not normally viewable by a regular user or attach the output of a command as root. xorg needs to attach the contents of /var/log/lightdm. update-manager needs to attach the current dmsesg. Plymouth needs to attach /var/log/plymouth-debug.log.

At present, apport uses pkexec to present a password dialog in these cases. While this is an improvement over the previous gksu-based implementation in that it allows us to set more password dialog text, providing some context as to why the user is suddenly seeing this dialog, it is still abrupt.

This presents an interesting problem.

We cannot wait until the hook is run to show these authentication dialogs. It will likely be far more than 10 seconds after the initial error dialog was presented, and could be hours or days later, depending on when the user next connects to the Internet.

One option is to map attach_root_command_outputs to a new com.ubuntu.apport.package-hook PolicyKit permission that is granted to the whoopsie user. While this means the hook mechanism is able to run remote code as root, it is restricted to code from the same group of developers that can modify maintainer scripts in all of the Ubuntu packages (~core-dev). Still, users can run apt in --download-only mode and review the code to be run before installing a package. They cannot review a server-side hook before running it.

For the time being, we will limit hooks to only running with regular user permissions.

We will need to find a way for whoopsie to run code as the user the crash occurred for, or grant sufficient permissions to whoopsie so that it can access the user's files. Whoopsie will need to be able to write to the reports in /var/crash.

Web interface

new-hook-mockup.jpg

We will soon restrict access to sensitive information on https://errors.ubuntu.com to just ~canonical-ubuntu-platform (1087361). It logically follows that the interface for modifying server-side hooks will also be restricted to this set of users.

Types

Hooks will be applied in one of two locations.

The first option is to set a hook at the problem level, as keyed by the crash or duplicate signature. We will need to maintain a mapping between the StacktraceAddressSignature on the client and the crash signature on the server. This may need to account for a duplicate signature as generated on server-side mapping (as used by developers to combine or split apart buckets) back to a StacktraceAddressSignature on the client. This should be straightforward as the server already needs to maintain this mapping to identify when it should request a core file.

The hooks can also be set at the package level, where they will be run for any crash of the given package.

We're purposefully leaving out global, problem type-specific hooks for now as these should ideally live in the apport package.

Modification from existing behaviour

We will leave in place the existing packaged package-hooks for now, taking care to fix the bug whereby they are run on released versions (1084979). However, we will only run these when creating a bug report through the ubuntu-bug command, not when processing a .crash file with apport-gtk.

We will SRU whoopsie and apport for the server-side hook changes.

Expiry

We will support two types of editable expiration fields: quantity (how many times have we received one of these reports?) and timeout (how many days has the hook been available for?). The sum of the reports reaching the value of one of fields will cause further collection to stop with the hook disabled. If this happens while a client is sending data for the hook, the connection will be dropped and the hook automatically disabled.

Both of these fields will have upper bounds for valid values. Developers will not be able to collect thousands of reports or run the hook for months.

There will be a third, non-editable field, for the amount of disk space the sum of the reports can use. In extreme cases, a database administrator should be able to override this field for individual hooks.

There will be a hardcoded upper limit on the client for disk usage, just to be safe. This is likely to be 50MB or less.

How do we get the reports with these fields?

Only the Package, Dependencies, and DuplicateSignature fields can be modified. This is so the hooks can effectively reassign the crash to a library. Modifications to any other field will be ignored.

HookResults

bucket ID or package

Package

BiscuitCount

BiscuitType

omnomnom

3

Jaffa Cakes

  • They'll live in the HookResults CF. Needs to refer back to the original OOPS.

  • We need to be able to surface these on the problem page
  • Can be done as an API first for expediency
  • Daisy and the client pass a token back and forth and that token gets mapped to the correct bucket ID.
  • We need a way of seeing just package hook results. Deferred discussion until Matthew gets here.
  • Hook this into the alerts system as well. Notification when a report comes in with that information.

Delivery mechanism

Provide a list (BSON) of URLs to the individual hooks. It doesn’t need the package name or the bucket ID because it already has those locally.

We send to the client with a token that maps to the bucket. In the simple case this would be the Crash Signature that the SAS maps to. We still need a SAS to Crash Signature mapping so we can tell the right clients to get the specific hook for a crash signature.

Release specific hooks?

Restrict to a particular release upfront?

No, package hooks should check the DistroRelease field, when needed. Maybe DistroRelease checking should be in the web UI template for the hooks (if DistroRelease == ‘Ubuntu 13.04’:)

Compression

If there is time in the initial implementation, we should evaluate using compression for the increasingly large amount of data transfered between whoopsie and daisy. Candidates for this are snappy and zlib. xz could also be considered if we keep decompression time low on the server.

We should work with the webops team on this, as they may have strong opinions on the implementation. We will only get a few instances of this extra information out of the 100,000 reports we receive a day, given the limits we're putting on size, so this shouldn’t overload us.

Sending

Whoopsie gets a few hooks, downloads them, runs them with the python-apport code to update the report, sends the new keys in the report back (not any existing or modified), report gets written to the HookResults CF

Error handling

If a hook fails, the exception from the hook will be sent as a new field along with the other fields generated by the hook up until the point of failure. Daisy will write these into the new HookResults Column Family to indicate a failure of that hook.

Failed hooks will send an alert to the hook creator via SMS (mup) or email.

Audit

A new page will be added to https://errors.ubuntu.com that provides a report of hook usage.

This will include:

  • Active hooks with their expiry date. For each of the hooks, the number of reports received and the size of data transmitted so far will be included.
  • We will also record by day hook usage statistics (active, inactive, working, failed) to determine whether or not the hook mechanism is actually being used and working.

Test mechanism

Script to make testing a new hook against a local system or canonistack system easy

Launchpad bugs

A new checkbox is added in the server-side hooks UI for “Get someone to file this on Launchpad”. This is checked by apport via an api on daisy, where it asks if we want LP bugs for the SAS for which the report is about. If the answer is yes, then we create a LP bug with a specific errors.ubuntu.com tag that crash-digger is looking for and the SAS (attachment?). Crash-digger then finds this, looks up the SAS in daisy.ubuntu.com and gets the crash signature back. It then writes the errors.ubuntu.com URL for that bucket into the bug and tells daisy to send off a notification that the server-side hook now has a LP bug. (and updates the BugToCrashSignatures CF)

This will let us mostly turn off retracing of Launchpad crashes.

ErrorTracker/ServerSideHooks (last edited 2013-07-24 15:46:20 by ev)