Git Product home page Git Product logo

Comments (3)

dfawley avatar dfawley commented on May 24, 2024 1

If you check the blame layer:

https://github.com/grpc/grpc-go/blame/master/stream.go#L280

None of this code has been touched at all for many years, so I don't think there is any regression here.

It's a programmer error to pass nil as a CallOption. It's not a situation that is difficult to avoid, and in fact it's very unusual to encounter it.

from grpc-go.

arvindbr8 avatar arvindbr8 commented on May 24, 2024

go.dev/ref/spec#Passing_arguments_to_..._parameters

I'm not seeing where it exactly talks about the nil handling there. I don't think Invoke() should handle nil being passed along opts.

For an example like https://go.dev/play/p/HxapK0toPq8 -

package main

import "fmt"

type CallOption interface {
	before(*string) error
	after(*string, *string)
}

type EmptyCallOption struct{}

func (EmptyCallOption) before(*string) error   { return nil }
func (EmptyCallOption) after(*string, *string) {}

func f(a ...CallOption) {
	fmt.Printf("%+v\n", a)
}

func main() {
	f()
	f(nil)
	f(EmptyCallOption{})
}

the output is:

[]
[<nil>]
[{}]

i.e., f() != f(nil)

from grpc-go.

brunoluizkatz avatar brunoluizkatz commented on May 24, 2024

I don't remember the gRPC package version we used before updating to Go v1.20, but before this update calling the Invoke method with the options set with nil doesn't panic, but after this update invoking the method results in a panic.

If the opts ...CallOption is nil. The panic occurs after the defer at https://github.com/grpc/grpc-go/blob/master/stream.go#L274 who is triggered by the calling one [nil] as a function without validation if the value is nil or not, at https://github.com/grpc/grpc-go/blob/master/stream.go#L280

from grpc-go.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.