Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

proc permits upvars to be moved repeatedly in a loop #12041

Closed
nickdesaulniers opened this issue Feb 5, 2014 · 6 comments · Fixed by #13413
Closed

proc permits upvars to be moved repeatedly in a loop #12041

nickdesaulniers opened this issue Feb 5, 2014 · 6 comments · Fixed by #13413
Milestone

Comments

@nickdesaulniers
Copy link

use std::io::net::ip::{SocketAddr, Ipv4Addr};
use std::io::net::tcp::{TcpListener, TcpAcceptor, TcpStream};
use std::io::stdio::println;
use std::io::{Listener, Acceptor};

fn main () {
  let addr: SocketAddr = SocketAddr { ip: Ipv4Addr(0, 0, 0, 0), port: 3000 };
  let listener: TcpListener = match TcpListener::bind(addr) {
    Err(e) => { println(e.desc); return; },
    Ok(l) => l
  };

  let acceptor: TcpAcceptor = match listener.listen() {
    Err(e) => { println(e.desc); return; },
    Ok(a) => a
  };

  let (port, chan): (Port<TcpStream>, Chan<TcpStream>) = Chan::new();
  spawn(proc() {
    loop {
      let mut acceptor = acceptor;
      let stream: TcpStream = match acceptor.accept() {
        Err(e) => { println(e.desc); return; },
        Ok(s) => s
      };
      chan.send(stream);
    }
  });
  spawn(proc() {
    let mut stream: TcpStream = port.recv();
    match stream.read_to_str() {
      Err(e) => { println(e.desc); return; },
      Ok(msg) => println(msg)
    }
  });
}

compiles rustc chat.rs. Runs ./chat. telnet localhost 3000 Connection refused and segfault.

@alexcrichton
Copy link
Member

This is a bug in the treatment of captured variables. The line in question is:

loop {
    let mut acceptor = acceptor;
}

This is moving into the loop repeatedly when you should only be allowed to do it once. I think I've seen this bug before, but just in case, cc @nikomatsakis

@nikomatsakis
Copy link
Contributor

thanks @alexcrichton, I've seen some reports of bugs like this before -- it's clear that we need to revisit the code used to check "once fns" -- it was added as a temporary start towards support (under a -Z flag) and then pressed into full service, clearly not quite ready for prime time.

@alexcrichton
Copy link
Member

Nominating.

@nikomatsakis
Copy link
Contributor

updated title to reflect the real issue at hand.

@flaper87
Copy link
Contributor

flaper87 commented Feb 5, 2014

cc @flaper87

@pnkfelix
Copy link
Member

pnkfelix commented Feb 6, 2014

Assigning 1.0, max(P-backcompat-lang, P-high). Gotta fix.

edit: The use of max above is sort of a joke: take the max of the two P-tag inputs. (Also, I originally wrote P-backcompat-libs, but I'm pretty sure that was a typo.)

@pnkfelix pnkfelix added this to the 1.0 milestone Feb 6, 2014
This was referenced Feb 18, 2014
bors added a commit that referenced this issue Apr 10, 2014
This fixes the categorization of the upvars of procs (represented internally
as once fns) to consider usage to require a loan. In doing so, upvars are no
longer allowed to be moved out of repeatedly in loops and such.

Closes #10398
Closes #12041
Closes #12127
bors added a commit to rust-lang-ci/rust that referenced this issue Jul 25, 2022
…no-std, r=jonas-schievink

feat: prefer core/alloc over std in auto-imports if `#[no_std]` is conditional

We already did this if `#![no_std]` was present, this PR makes it work with `#![cfg_attr(not(test), no_std)]` too, which is very common in libraries.

Fixes rust-lang/rust-analyzer#12035
cc rust-lang/rust-analyzer#10718
blyxyas pushed a commit to blyxyas/rust that referenced this issue Jan 3, 2024
… r=Jarcho

Remove mitigations for incorrect node args

This change https://github.com/rust-lang/rust/pull/118420/files#r1419874371 adds a missing `write_args` to properly record node args for lang-item calls.

Thus, in the `unnecessary_to_owned` lint, this ensures that the `call_generic_args` extracted by `get_callee_generic_args_and_args` are always correct, and we can remove the mitigation for rust-lang#9504 and rust-lang#10021 since the root cause has been fixed.

I'm not sure if there is other now-unnecessary code that can be removed, but this is the one I found when investigating rust-lang/rust-clippy#11965 (comment).

changelog: none
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

5 participants