mirror of
https://github.com/libuv/libuv
synced 2025-03-28 21:13:16 +00:00

It's making node.js crash when run as root. Backtrace: (gdb) bt #0 0x00007fff856e3ff9 in __findenv () #1 0x00007fff856e404c in getenv () #2 0x000000010004c850 in loop_init (loop=0x10045a792, flags=8) at ev.c:1707 #3 0x000000010004cb3b in ev_backend [inlined] () at /Users/tjfontaine/Development/node/deps/uv/src/unix/ev/ev.c:2090 #4 0x000000010004cb3b in ev_default_loop (flags=1606417108) at ev.c:2092 #5 0x000000010004e5c6 in uv__loop_init (loop=0x10066e330, default_loop=1) at loop.c:52 #6 0x0000000100044367 in uv_default_loop () at core.c:196 #7 0x0000000100004625 in node::Init (argc=1606417456, argv=0x100b0f490) at node.cc:2761 #8 0x000000010000797d in node::Start (argc=1606417600, argv=0x0) at node.cc:2888 #9 0x0000000100000ca4 in start () This reverts commits: b49d6f7 unix: fix uv_set_process_title() a9f6f06 unix: fix format string vulnerability in freebsd.c a87abc7 unix: avoid buffer overflow in proctitle.c dc97d44 unix: move uv_set_process_title() to proctitle.c
174 lines
4.9 KiB
Makefile
174 lines
4.9 KiB
Makefile
# Copyright Joyent, Inc. and other Node contributors. All rights reserved.
|
|
#
|
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
# of this software and associated documentation files (the "Software"), to
|
|
# deal in the Software without restriction, including without limitation the
|
|
# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
|
# sell copies of the Software, and to permit persons to whom the Software is
|
|
# furnished to do so, subject to the following conditions:
|
|
#
|
|
# The above copyright notice and this permission notice shall be included in
|
|
# all copies or substantial portions of the Software.
|
|
#
|
|
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
|
# IN THE SOFTWARE.
|
|
|
|
E=
|
|
CSTDFLAG=--std=c89 -pedantic -Wall -Wextra -Wno-unused-parameter
|
|
CFLAGS += -g
|
|
CPPFLAGS += -Isrc -Isrc/unix/ev
|
|
LINKFLAGS=-lm
|
|
|
|
CPPFLAGS += -D_LARGEFILE_SOURCE
|
|
CPPFLAGS += -D_FILE_OFFSET_BITS=64
|
|
|
|
OBJS += src/unix/async.o
|
|
OBJS += src/unix/core.o
|
|
OBJS += src/unix/dl.o
|
|
OBJS += src/unix/error.o
|
|
OBJS += src/unix/fs.o
|
|
OBJS += src/unix/loop.o
|
|
OBJS += src/unix/loop-watcher.o
|
|
OBJS += src/unix/pipe.o
|
|
OBJS += src/unix/poll.o
|
|
OBJS += src/unix/process.o
|
|
OBJS += src/unix/stream.o
|
|
OBJS += src/unix/tcp.o
|
|
OBJS += src/unix/thread.o
|
|
OBJS += src/unix/timer.o
|
|
OBJS += src/unix/tty.o
|
|
OBJS += src/unix/udp.o
|
|
|
|
ifeq (SunOS,$(uname_S))
|
|
EV_CONFIG=config_sunos.h
|
|
EIO_CONFIG=config_sunos.h
|
|
CPPFLAGS += -Isrc/ares/config_sunos -D__EXTENSIONS__ -D_XOPEN_SOURCE=500
|
|
LINKFLAGS+=-lsocket -lnsl -lkstat
|
|
OBJS += src/unix/sunos.o
|
|
endif
|
|
|
|
ifeq (Darwin,$(uname_S))
|
|
EV_CONFIG=config_darwin.h
|
|
EIO_CONFIG=config_darwin.h
|
|
CPPFLAGS += -D_DARWIN_USE_64_BIT_INODE=1 -Isrc/ares/config_darwin
|
|
LINKFLAGS+=-framework CoreServices
|
|
OBJS += src/unix/darwin.o
|
|
OBJS += src/unix/kqueue.o
|
|
endif
|
|
|
|
ifeq (Linux,$(uname_S))
|
|
EV_CONFIG=config_linux.h
|
|
EIO_CONFIG=config_linux.h
|
|
CSTDFLAG += -D_GNU_SOURCE
|
|
CPPFLAGS += -Isrc/ares/config_linux
|
|
LINKFLAGS+=-ldl -lrt
|
|
OBJS += src/unix/linux/linux-core.o \
|
|
src/unix/linux/inotify.o \
|
|
src/unix/linux/syscalls.o
|
|
endif
|
|
|
|
ifeq (FreeBSD,$(uname_S))
|
|
EV_CONFIG=config_freebsd.h
|
|
EIO_CONFIG=config_freebsd.h
|
|
CPPFLAGS += -Isrc/ares/config_freebsd
|
|
LINKFLAGS+=-lkvm
|
|
OBJS += src/unix/freebsd.o
|
|
OBJS += src/unix/kqueue.o
|
|
endif
|
|
|
|
ifeq (DragonFly,$(uname_S))
|
|
EV_CONFIG=config_freebsd.h
|
|
EIO_CONFIG=config_freebsd.h
|
|
CPPFLAGS += -Isrc/ares/config_freebsd
|
|
LINKFLAGS+=
|
|
OBJS += src/unix/freebsd.o
|
|
OBJS += src/unix/kqueue.o
|
|
endif
|
|
|
|
ifeq (NetBSD,$(uname_S))
|
|
EV_CONFIG=config_netbsd.h
|
|
EIO_CONFIG=config_netbsd.h
|
|
CPPFLAGS += -Isrc/ares/config_netbsd
|
|
LINKFLAGS+=
|
|
OBJS += src/unix/netbsd.o
|
|
OBJS += src/unix/kqueue.o
|
|
endif
|
|
|
|
ifeq (OpenBSD,$(uname_S))
|
|
EV_CONFIG=config_openbsd.h
|
|
EIO_CONFIG=config_openbsd.h
|
|
CPPFLAGS += -Isrc/ares/config_openbsd
|
|
LINKFLAGS+=-lkvm
|
|
OBJS += src/unix/openbsd.o
|
|
OBJS += src/unix/kqueue.o
|
|
endif
|
|
|
|
ifneq (,$(findstring CYGWIN,$(uname_S)))
|
|
EV_CONFIG=config_cygwin.h
|
|
EIO_CONFIG=config_cygwin.h
|
|
# We drop the --std=c89, it hides CLOCK_MONOTONIC on cygwin
|
|
CSTDFLAG = -D_GNU_SOURCE
|
|
CPPFLAGS += -Isrc/ares/config_cygwin
|
|
LINKFLAGS+=
|
|
OBJS += src/unix/cygwin.o
|
|
endif
|
|
|
|
# Need _GNU_SOURCE for strdup?
|
|
RUNNER_CFLAGS=$(CFLAGS) -D_GNU_SOURCE
|
|
RUNNER_LINKFLAGS=$(LINKFLAGS)
|
|
|
|
ifeq (SunOS,$(uname_S))
|
|
RUNNER_LINKFLAGS += -pthreads
|
|
else
|
|
RUNNER_LINKFLAGS += -pthread
|
|
endif
|
|
|
|
RUNNER_LIBS=
|
|
RUNNER_SRC=test/runner-unix.c
|
|
|
|
uv.a: $(OBJS) src/cares.o src/fs-poll.o src/uv-common.o src/unix/ev/ev.o src/unix/uv-eio.o src/unix/eio/eio.o $(CARES_OBJS)
|
|
$(AR) rcs uv.a $^
|
|
|
|
src/%.o: src/%.c include/uv.h include/uv-private/uv-unix.h
|
|
$(CC) $(CSTDFLAG) $(CPPFLAGS) $(CFLAGS) -c $< -o $@
|
|
|
|
src/unix/%.o: src/unix/%.c include/uv.h include/uv-private/uv-unix.h src/unix/internal.h
|
|
$(CC) $(CSTDFLAG) $(CPPFLAGS) $(CFLAGS) -c $< -o $@
|
|
|
|
src/unix/ev/ev.o: src/unix/ev/ev.c
|
|
$(CC) $(CPPFLAGS) $(CFLAGS) -c src/unix/ev/ev.c -o src/unix/ev/ev.o -DEV_CONFIG_H=\"$(EV_CONFIG)\"
|
|
|
|
|
|
EIO_CPPFLAGS += $(CPPFLAGS)
|
|
EIO_CPPFLAGS += -DEIO_CONFIG_H=\"$(EIO_CONFIG)\"
|
|
EIO_CPPFLAGS += -DEIO_STACKSIZE=262144
|
|
EIO_CPPFLAGS += -D_GNU_SOURCE
|
|
|
|
src/unix/eio/eio.o: src/unix/eio/eio.c
|
|
$(CC) $(EIO_CPPFLAGS) $(CFLAGS) -c src/unix/eio/eio.c -o src/unix/eio/eio.o
|
|
|
|
src/unix/uv-eio.o: src/unix/uv-eio.c
|
|
$(CC) $(CPPFLAGS) -Isrc/unix/eio/ $(CSTDFLAG) $(CFLAGS) -c src/unix/uv-eio.c -o src/unix/uv-eio.o
|
|
|
|
|
|
clean-platform:
|
|
-rm -f src/ares/*.o
|
|
-rm -f src/unix/*.o
|
|
-rm -f src/unix/ev/*.o
|
|
-rm -f src/unix/eio/*.o
|
|
-rm -f src/unix/linux/*.o
|
|
-rm -rf test/run-tests.dSYM run-benchmarks.dSYM
|
|
|
|
distclean-platform:
|
|
-rm -f src/ares/*.o
|
|
-rm -f src/unix/*.o
|
|
-rm -f src/unix/ev/*.o
|
|
-rm -f src/unix/eio/*.o
|
|
-rm -f src/unix/linux/*.o
|
|
-rm -rf test/run-tests.dSYM run-benchmarks.dSYM
|