Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: gssapi/gssproxy
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.9.1
Choose a base ref
...
head repository: gssapi/gssproxy
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.9.2
Choose a head ref
  • 20 commits
  • 19 files changed
  • 7 contributors

Commits on Jun 5, 2022

  1. Add a few badges rendered on github

    Signed-off-by: Simo Sorce <[email protected]>
    simo5 committed Jun 5, 2022
    Configuration menu
    Copy the full SHA
    f9a187e View commit details
    Browse the repository at this point in the history

Commits on Jun 9, 2022

  1. Add some unit file proteciton directives

    This will improve the security stance of gssproxy on systems that use
    systemd.
    
    Signed-off-by: Simo Sorce <[email protected]>
    simo5 committed Jun 9, 2022
    Configuration menu
    Copy the full SHA
    05140b3 View commit details
    Browse the repository at this point in the history

Commits on Jul 26, 2022

  1. Run coverity if there was any commit in the week

    Signed-off-by: Simo Sorce <[email protected]>
    simo5 committed Jul 26, 2022
    Configuration menu
    Copy the full SHA
    5930aa1 View commit details
    Browse the repository at this point in the history
  2. CID 379418 Invalid type in argument

    Cast to int to pass in the correct value (important on big endian
    machines).
    
    Signed-off-by: Simo Sorce <[email protected]>
    simo5 committed Jul 26, 2022
    Configuration menu
    Copy the full SHA
    783c4bc View commit details
    Browse the repository at this point in the history
  3. CID 379416 Explicit null dereference

    We never call this function in a way that the null dereference would
    happen. However there is no point in riskying it should the code change
    inf future. Rework the code to bail out early and avoid the issue.
    
    Signed-off-by: Simo Sorce <[email protected]>
    simo5 committed Jul 26, 2022
    Configuration menu
    Copy the full SHA
    e765ed9 View commit details
    Browse the repository at this point in the history
  4. CID 379415 Invalid type in argument

    Additional type fixes where a long was passed in.
    
    Signed-off-by: Simo Sorce <[email protected]>
    simo5 committed Jul 26, 2022
    Configuration menu
    Copy the full SHA
    a42969b View commit details
    Browse the repository at this point in the history
  5. Correct previous fix

    Inadvertently omitted the conversion specifier
    
    Signed-off-by: Simo Sorce <[email protected]>
    simo5 committed Jul 26, 2022
    Configuration menu
    Copy the full SHA
    45244aa View commit details
    Browse the repository at this point in the history

Commits on Sep 13, 2022

  1. Typo doc fix.

    Silences Debian lintian typo-in-manual-page.
    
    Signed-off-by: Simon Josefsson <[email protected]>
    jas4711 authored and simo5 committed Sep 13, 2022
    Configuration menu
    Copy the full SHA
    090aa94 View commit details
    Browse the repository at this point in the history

Commits on Sep 16, 2022

  1. More typo fixes to silence Debian lintian typo-in-manual-page.

    Signed-off-by: Simon Josefsson <[email protected]>
    jas4711 authored and simo5 committed Sep 16, 2022
    Configuration menu
    Copy the full SHA
    159794c View commit details
    Browse the repository at this point in the history

Commits on Nov 29, 2022

  1. gssproxy: check result of calloc() is necessary

    Signed-off-by: gaoyusong <[email protected]>
    gaoyusong authored and simo5 committed Nov 29, 2022
    Configuration menu
    Copy the full SHA
    9396b57 View commit details
    Browse the repository at this point in the history

Commits on Dec 7, 2022

  1. gssproxy/tests: add missing cmd_index in t_program

    Signed-off-by: gaoyusong <[email protected]>
    gaoyusong authored and simo5 committed Dec 7, 2022
    Configuration menu
    Copy the full SHA
    5411fda View commit details
    Browse the repository at this point in the history

Commits on Dec 8, 2022

  1. Guard against NULL remote credentials

    In some rare cases is may happen that we fail to init
    cred_handle->remote, in this case we need to guard xdr_free() because
    this function does not handle NULL pointers gracefully like free() does.
    
    Signed-off-by: Simo Sorce <[email protected]>
    simo5 committed Dec 8, 2022
    Configuration menu
    Copy the full SHA
    27c5907 View commit details
    Browse the repository at this point in the history
  2. Silence a deprecation warning

    This is causing some CI builds to fail as we use -Werror
    
    Signed-off-by: Simo Sorce <[email protected]>
    simo5 committed Dec 8, 2022
    Configuration menu
    Copy the full SHA
    ce192d8 View commit details
    Browse the repository at this point in the history

Commits on Dec 13, 2022

  1. gssproxy:Fix doc typo

    Signed-off-by: gaoyusong <[email protected]>
    gaoyusong authored and simo5 committed Dec 13, 2022
    Configuration menu
    Copy the full SHA
    4024680 View commit details
    Browse the repository at this point in the history

Commits on May 31, 2023

  1. Fix build on musl libc with clang 16

    Signed-off-by: Brahmajit Das <[email protected]>
    Brahmajit Das authored and simo5 committed May 31, 2023
    Configuration menu
    Copy the full SHA
    f6ab319 View commit details
    Browse the repository at this point in the history

Commits on Jul 11, 2023

  1. systemd: add StateDirectory to gssproxy.service

    gssproxy won't start if /var/lib/gssproxy is missing ("Failed to
    create Unix Socket!"). systemd provides a directive to ensure that all
    necessary state directories exist so we can use it in this case.
    
    Signed-off-by: Alberto Garcia <[email protected]>
    bertogg authored and simo5 committed Jul 11, 2023
    Configuration menu
    Copy the full SHA
    ec46345 View commit details
    Browse the repository at this point in the history

Commits on Sep 7, 2023

  1. tests: fix userproxytest missed NULL argument pointer

    Execv syscall needs the argument array of pointers must
    be terminated by a null pointer, otherwise the garbage
    data might break the test.
    
    Signed-off-by: Kai Zhang <[email protected]>
    Kai Zhang authored and simo5 committed Sep 7, 2023
    Configuration menu
    Copy the full SHA
    f52e60f View commit details
    Browse the repository at this point in the history

Commits on Oct 18, 2023

  1. [gssproxy] retry writing to /proc/net/rpc/use-gss-proxy

    This improves the handling of cases where the auth_rpcgss module has not yet
    been loaded when gssproxy is started.
    
    Signed-off-by: David Härdeman <[email protected]>
    Alphix authored and simo5 committed Oct 18, 2023
    Configuration menu
    Copy the full SHA
    fb8737b View commit details
    Browse the repository at this point in the history
  2. Do not close fd if it was never set

    Fixes Coverity 403648: Argument cannot be negative
    
    Signed-off-by: Simo Sorce <[email protected]>
    simo5 committed Oct 18, 2023
    Configuration menu
    Copy the full SHA
    9d013b1 View commit details
    Browse the repository at this point in the history

Commits on Oct 19, 2023

  1. Version 0.9.2

    Signed-off-by: Simo Sorce <[email protected]>
    simo5 committed Oct 19, 2023
    Configuration menu
    Copy the full SHA
    27f883f View commit details
    Browse the repository at this point in the history
Loading