218 Commits (main)
 

Author SHA1 Message Date
Tamir Duberstein 273f30a0da ci: use latest stable rust
cargo_metadata depends on e.g. `home`[0] whose MSRV is N-2[1], so we
can't easily pin our Rust version.

Link: https://crates.io/crates/home [0]
Link: https://github.com/rust-lang/cargo/commit/c6c1df47 [1]
1 month ago
Tamir Duberstein 6580d77fa4 Use aya-build 2 months ago
Tamir Duberstein cb9ab79705 toml: fmt 2 months ago
Tamir Duberstein 77cbc8bcf9 Remove rust-toolchain
Doesn't make much sense in a workspace.
2 months ago
Tamir Duberstein 59c882cebf Enable unwinding in userspace 2 months ago
Xiaobo Liu 1b37aad7f5 Update aya crate to 0.13.1
Signed-off-by: Xiaobo Liu <cppcoffee@gmail.com>
2 months ago
Tamir Duberstein b1d6fb31ea Always build eBPF; remove xtask 3 months ago
Tamir Duberstein 27e7867528 Add cross-compilation to CI
Updates the README to use cargo target config instead of RUSTFLAGS to
avoid setting the linker for ebpf in cargo-in-cargo.
3 months ago
Tamir Duberstein 89eb550856 Reformat test.sh 3 months ago
Zero King 0c8fb43804 chore: Format Cargo.toml 3 months ago
Tamir Duberstein 20ce988ecf Document cross-compilation on macOS
The instructions in the book are now out of date for projects generated
with this template. Since the instructions are much shorter these days,
put them in the README.
3 months ago
Tamir Duberstein 5622ca4df1 Test execution of projects 3 months ago
Tamir Duberstein 940a60e0a3 Move user-facing messages to from log to print 3 months ago
Tamir Duberstein 32f914aa6d Add error context 3 months ago
Tamir Duberstein 263f115fdc Use destructuring 3 months ago
Tamir Duberstein f131e87764 Use TCP listener instead of stream
This doesn't require a listener on the other side.
3 months ago
Tamir Duberstein dec0021b58 Use cancel-in-progress 3 months ago
Tamir Duberstein b6ecbb8bd1 Appease shellcheck 3 months ago
Tamir Duberstein 7425e7bd2d Add Rust 1.80.1 to CI 3 months ago
Tamir Duberstein 8250a09bc0 Add rustfmt to CI 3 months ago
Tamir Duberstein 5811d6ff56 Replace xtask builds with build scripts
Adapt https://github.com/aya-rs/aya/commit/3d463a3 and subsequent work
to the template. This has worked very well for us in the main project,
and our users should get the same hotness.

Note that xtask is still used for running, as it is in the main project.
3 months ago
Tamir Duberstein 4da4bf4729 Run clippy in CI
Install Rust stable *after* nightly so that the default is stable.
3 months ago
Tamir Duberstein ee45752006 Move dependencies to workspace
Add "{{project-name}}-ebpf" to workspace. Update various cargo configs
to match main aya repo.
3 months ago
Dave Tucker e064758d59
Merge pull request #122 from cppcoffee/main
Update aya version to 0.13
3 months ago
Xiaobo Liu d889dd373b Upgrade aya version
Signed-off-by: Xiaobo Liu <cppcoffee@gmail.com>
3 months ago
Xiaobo Liu 44c1f66b7e ebpf: merge rust-analyzer settings
Signed-off-by: Xiaobo Liu <cppcoffee@gmail.com>
4 months ago
Xiaobo Liu 04b631eb7c ebpf: consolidate rust-analyzer settings
Signed-off-by: Xiaobo Liu <cppcoffee@gmail.com>
4 months ago
Tamir Duberstein 91518b64b3 Build on ubuntu-22.04
This matches the version used in the bpf-linker binstall job. Otherwise
we fail with:
```
  = note: bpf-linker: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.32' not found (required by bpf-linker)
          bpf-linker: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.33' not found (required by bpf-linker)
          bpf-linker: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34' not found (required by bpf-linker)
```

Add a nightly build so we catch these earlier.
4 months ago
Zero King 0afbca858c
chore: remove Cargo.lock from .gitignore (#113)
Fixes #112
6 months ago
Zero King 79b73bf2ef fix: emacs directory locals
- Emacs vectors do not have "," separator.
- The .dir-locals.el list is checked against major mode names, but
  lsp-mode could be a minor mode. Use the generic prog-mode instead.
6 months ago
Sandeep Nambiar d3435676f7
feat: add emacs directory locals to configure rust-analyzer (#109)
.dir-locals.el is the emacs equivalent of .vim directory in the project here.

This PR adds a simple configuration to map the same rust-analyzer
configuration variable as the vim version to make use of new aya
projects seamless with emacs projects that use emacs-lsp + rust analyzer.
8 months ago
catalin-h a006355e62
lsp: support rust-analyzer on helix editor (#103)
This patch allows the helix editor to correctly initialize the
rust-analyzer when opening a source file from {{project-name}}-ebpf.

To find the Cargo.toml the helix editor must be launched from
the {{project-name}}-ebpf directory or provide the workspace path
as follows:

hx -w <path to {{project-name}}-ebpf> [relative path in {{project-name}}-ebpf]

The patch was tested using helix version 23.10.
8 months ago
Chris Pick 2ad877309a build: Set `resolver = "2"` at the workspace's Cargo.toml
This is the default resolver for the 2021 edition, but needs to be set
manually in virtual workspaces.

https://doc.rust-lang.org/edition-guide/rust-2021/default-cargo-resolver.html#detail
8 months ago
Chris Pick d9ce1b7169 ebpf: use TC_ACT_PIPE in classifier
Demonstrate using the correct constant instead of a magic number.
8 months ago
wanjunlei 7c143de8af
add a build command (#108)
Add a new command to build ebpf and userspace programs without running.

```
cargo xtask build
```

Co-authored-by: Michal Rostecki <vadorovsky@protonmail.com>
8 months ago
Michal Rostecki f642921fee chore: Use `aya`, `aya-ebpf` and `aya-log` from crates.io 9 months ago
Michal Rostecki 97e817d110
chore: Rename aya-bpf to aya-ebpf (#106)
aya-bpf crate got renamed to aya-ebpf. Reflect this change
in the template.
10 months ago
blacker1230 1185fd49d2 Fix sk_msg. 10 months ago
pdliyan 3bee1bcc0f Reverse of sk_msg. 10 months ago
pdliyan 17fe98c37c Have no idea about this failed. 10 months ago
pdliyan 5d04aef980 Try fix the usage of fd(). 10 months ago
pdliyan c68f239ad0 Try fix test failed. Let's see if that would pass. 10 months ago
pdliyan 628e6a4f81 Fix unchanged Bpf reference. Would check sock_map latter. 10 months ago
pdliyan bc61bdeeba Rename aya-bpf to aya-ebpf. 10 months ago
pdliyan dce5317f2c Rename aya-bpf to aya-ebpf. 10 months ago
dependabot[bot] 9dc5296e47
Merge pull request #100 from aya-rs/dependabot/github_actions/actions/checkout-4 1 year ago
dependabot[bot] 6abd727868
Bump actions/checkout from 3 to 4
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v3...v4)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
1 year ago
Tamir Duberstein 1247fdea1d socket_filter: fix build
The signature of attach changed in
https://github.com/aya-rs/aya/pull/723.
1 year ago
Dave Tucker 599ba4bdf9
Merge pull request #99 from dave-tucker/new-names 1 year ago
Dave Tucker 162599934c ci: Use taiki-e/install-action
This should binstall cargo-generate to save CI time

Signed-off-by: Dave Tucker <dave@dtucker.co.uk>
1 year ago