Skip to content

Commit

Permalink
native, rustuv: Fix spawning with empty args
Browse files Browse the repository at this point in the history
There was a bug in both libnative and libuv which prevented child processes from
being spawned correctly on windows when one of the arguments was an empty
string. The libuv bug has since been fixed upstream, and the libnative bug was
fixed as part of this commit.

When updating libuv, this also includes a fix for rust-lang#15149.

Closes rust-lang#15149
Closes rust-lang#16272
  • Loading branch information
alexcrichton committed Aug 6, 2014
1 parent ce83301 commit 3aec9f4
Show file tree
Hide file tree
Showing 6 changed files with 61 additions and 11 deletions.
5 changes: 4 additions & 1 deletion src/libnative/io/process.rs
Original file line number Diff line number Diff line change
Expand Up @@ -479,7 +479,10 @@ fn make_command_line(prog: &CString, args: &[CString]) -> String {
return cmd;

fn append_arg(cmd: &mut String, arg: &str) {
let quote = arg.chars().any(|c| c == ' ' || c == '\t');
// If an argument has 0 characters then we need to quote it to ensure
// that it actually gets passed through on the command line or otherwise
// it will be dropped entirely when parsed on the other end.
let quote = arg.chars().any(|c| c == ' ' || c == '\t') || arg.len() == 0;
if quote {
cmd.push_char('"');
}
Expand Down
4 changes: 2 additions & 2 deletions src/librustuv/net.rs
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ fn socket_name(sk: SocketNameKind,

let sockaddr_p = &mut sockaddr as *mut libc::sockaddr_storage;
match unsafe {
getsockname(handle, sockaddr_p as *mut libc::sockaddr, &mut namelen)
getsockname(&*handle, sockaddr_p as *mut libc::sockaddr, &mut namelen)
} {
0 => Ok(sockaddr_to_addr(&sockaddr, namelen as uint)),
n => Err(uv_error_to_io_error(UvError(n)))
Expand Down Expand Up @@ -365,7 +365,7 @@ impl TcpListener {
let _len = addr_to_sockaddr(address, &mut storage);
let res = unsafe {
let addr_p = &storage as *const _ as *const libc::sockaddr;
uvll::uv_tcp_bind(l.handle, addr_p)
uvll::uv_tcp_bind(l.handle, addr_p, 0)
};
return match res {
0 => Ok(l.install()),
Expand Down
12 changes: 8 additions & 4 deletions src/librustuv/uvll.rs
Original file line number Diff line number Diff line change
Expand Up @@ -312,6 +312,7 @@ pub enum uv_req_type {
UV_FS,
UV_WORK,
UV_GETADDRINFO,
UV_GETNAMEINFO,
UV_REQ_TYPE_MAX
}

Expand All @@ -329,6 +330,7 @@ pub enum uv_req_type {
UV_UDP_SEND,
UV_FS,
UV_WORK,
UV_GETNAMEINFO,
UV_GETADDRINFO,
UV_ACCEPT,
UV_FS_EVENT_REQ,
Expand Down Expand Up @@ -578,14 +580,16 @@ extern {
pub fn uv_tcp_init(l: *mut uv_loop_t, h: *mut uv_tcp_t) -> c_int;
pub fn uv_tcp_connect(c: *mut uv_connect_t, h: *mut uv_tcp_t,
addr: *const sockaddr, cb: uv_connect_cb) -> c_int;
pub fn uv_tcp_bind(t: *mut uv_tcp_t, addr: *const sockaddr) -> c_int;
pub fn uv_tcp_bind(t: *mut uv_tcp_t,
addr: *const sockaddr,
flags: c_uint) -> c_int;
pub fn uv_tcp_nodelay(h: *mut uv_tcp_t, enable: c_int) -> c_int;
pub fn uv_tcp_keepalive(h: *mut uv_tcp_t, enable: c_int,
delay: c_uint) -> c_int;
pub fn uv_tcp_simultaneous_accepts(h: *mut uv_tcp_t, enable: c_int) -> c_int;
pub fn uv_tcp_getsockname(h: *mut uv_tcp_t, name: *mut sockaddr,
pub fn uv_tcp_getsockname(h: *const uv_tcp_t, name: *mut sockaddr,
len: *mut c_int) -> c_int;
pub fn uv_tcp_getpeername(h: *mut uv_tcp_t, name: *mut sockaddr,
pub fn uv_tcp_getpeername(h: *const uv_tcp_t, name: *mut sockaddr,
len: *mut c_int) -> c_int;

// udp bindings
Expand All @@ -604,7 +608,7 @@ extern {
pub fn uv_udp_set_multicast_ttl(handle: *mut uv_udp_t, ttl: c_int) -> c_int;
pub fn uv_udp_set_ttl(handle: *mut uv_udp_t, ttl: c_int) -> c_int;
pub fn uv_udp_set_broadcast(handle: *mut uv_udp_t, on: c_int) -> c_int;
pub fn uv_udp_getsockname(h: *mut uv_udp_t, name: *mut sockaddr,
pub fn uv_udp_getsockname(h: *const uv_udp_t, name: *mut sockaddr,
len: *mut c_int) -> c_int;

// timer bindings
Expand Down
2 changes: 1 addition & 1 deletion src/libuv
Submodule libuv updated from 434958 to dec056
4 changes: 1 addition & 3 deletions src/test/run-pass/issue-15149.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,7 @@ use std::io::{TempDir, Command, fs};
use std::os;
use std::task::TaskBuilder;

// FIXME(#15149) libgreen still needs to be update. There is an open PR for it
// but it is not yet merged.
// green_start!(main)
green_start!(main)

fn main() {
// If we're the child, make sure we were invoked correctly
Expand Down
45 changes: 45 additions & 0 deletions src/test/run-pass/issue-16272.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
// Copyright 2014 The Rust Project Developers. See the COPYRIGHT
// file at the top-level directory of this distribution and at
// http://rust-lang.org/COPYRIGHT.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.

#![feature(phase)]
#[phase(plugin)]
extern crate green;
extern crate native;

use native::NativeTaskBuilder;
use std::io::{process, Command};
use std::os;
use std::task::TaskBuilder;

green_start!(main)

fn main() {
let len = os::args().len();

if len == 1 {
test();
let (tx, rx) = channel();
TaskBuilder::new().native().spawn(proc() {
tx.send(test());
});
rx.recv();
} else {
assert_eq!(len, 3);
}
}

fn test() {
let status = Command::new(os::self_exe_name().unwrap())
.arg("foo").arg("")
.stdout(process::InheritFd(1))
.stderr(process::InheritFd(2))
.status().unwrap();
assert!(status.success());
}

1 comment on commit 3aec9f4

@aturon
Copy link

@aturon aturon commented on 3aec9f4 Aug 12, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

r+

Please sign in to comment.